I am taking the value from the one response and coamparing that value with one integer and based on the boolean i am navigating to the other step.
It is showing No such开发者_运维知识库 property: testrunner. Please let me know why this is happening..
if (cardScheme == '20172')
testRunner.runTestStepByName( "Submit Order 1" )
else
testRunner.runTestStepByName( "Submit Order" )
Groovy is case-sensitive language. You are using somewhere testrunner instead of testRunner.
精彩评论