Forum Discussion
SmartBear_Suppo
Alumni
17 years agoHello,
You need to use a Groovy script TestStep for this. For instance to use a property that is located in the TestCase, you could use this:
Regards,
Dain
eviware support
You need to use a Groovy script TestStep for this. For instance to use a property that is located in the TestCase, you could use this:
def count = Integer.parseInt(testRunner.testCase.properties['count'].value)
testRunner.testCase.properties['count'].value = --count
if(count > 0)
testRunner.gotoStep(testRunner.testCase.getTestStepIndexByName('YourTestStep'))
Regards,
Dain
eviware support