You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
groovy.lang.MissingMethodException: No signature of method: cucumber.runtime.groovy.GroovyWorld.contains() is applicable for argument types: (String) values: [q]
when using
browser.$('input', name: contains('q')) << term + Keys.ENTER
but this works fine
browser.$('input', name: 'q') << term + Keys.ENTER
Sample project is attached to this discussion here
The text was updated successfully, but these errors were encountered:
As a result, following exception is thrown
groovy.lang.MissingMethodException: No signature of method: cucumber.runtime.groovy.GroovyWorld.contains() is applicable for argument types: (String) values: [q]
when using
browser.$('input', name: contains('q')) << term + Keys.ENTER
but this works fine
browser.$('input', name: 'q') << term + Keys.ENTER
Sample project is attached to this discussion here
The text was updated successfully, but these errors were encountered: