Forum Discussion
Cizo89
12 years agoFrequent Contributor
Hi Horst,
try this script, this should change the setupScript for all your TestCases in all TestSuites:
Regards,
Marek
try this script, this should change the setupScript for all your TestCases in all TestSuites:
//add your script here
String setupScript = ""
testRunner.testCase.testSuite.project.getTestSuiteList().each{
it.getTestCaseList().each{
it.setSetupScript(setupScript)
}
}
Regards,
Marek