Need help porting app

Having issues with ST --> HE port. getting this error. any ideas?

[error]groovy.lang.MissingMethodException: No signature of method: user_app.remove() is applicable for argument types: (java.lang.String) values: [Uninstall]
Possible solutions: getAt(java.lang.String) on line 255 (method loginPage2)

It's looking for a method remove (String) and sending it a value "Uninstall". The method doesn't exist in the code you are porting, so either:

  1. Create a method similar to:
def remove(strValue) {
...
}
  1. remove or comment out the method call
5 Likes