org.codehaus.groovy.runtime.metaclass.MissingMethodExceptionNoStack: No signature of method

Hi all,

I am getting the following error when running test cases through Jenkins:

Test Cases/MobileEnterprise-Android/VerifySuccessfulLogin FAILED because (of) org.codehaus.groovy.runtime.metaclass.MissingMethodExceptionNoStack: No signature of method: com.ge.me.android.LoginPage.startApp() is applicable for argument types: () values: [] Possible solutions: iterator()

However the test case is being called like this:

CustomKeywords.‘com.ge.me.android.LoginPage.startApp’()

and the keyword itself is:

  
  
  
  
  
  
  
  

/*

  

\* Start App

  

*/

  

@Keyword

  

**def** startApp() {

  

**def** appPath = PathUtil._absoluteToRelativePath_(GlobalVariable._Android_App_, RunConfiguration._getProjectDir_());

  

  

  

println(RunConfiguration._getProjectDir_())

  

println('appPath:' + appPath)

  

  

  

Mobile._startApplication_(appPath, **false**)

  

//Mobile.startApplication('kobiton-store:v8268', false)

  

}