groovy.lang.MissingMethodException no signature of method

Check the signature of whatever you wrote.
The signature of a function is this: samplefuctionwhatever(x,y,z)

If you only write samplefunctionwhatever(x,y) and you miss out (omit) “z” -> the signature of you call will not match that of Katalon.

Always check the number and type of arguments you pass to a function.

1 Like