Forum Discussion
SmartBear_Suppo
Alumni
14 years agoHi,
you could create a groovy script before these two that enables/disables each request alternatively for each run;
def request1 = testRunner.testCase.testSteps["Request 1"]
def request2 = testRunner.testCase.testSteps["Request 2"]
request1.disabled = !request1.disabled
request2.disabled = !request1.disabled
Does that help?
regards!
/Ole
SmartBear Software
you could create a groovy script before these two that enables/disables each request alternatively for each run;
def request1 = testRunner.testCase.testSteps["Request 1"]
def request2 = testRunner.testCase.testSteps["Request 2"]
request1.disabled = !request1.disabled
request2.disabled = !request1.disabled
Does that help?
regards!
/Ole
SmartBear Software