Forum Discussion
SmartBear_Suppo
Alumni
12 years agoHi,
There is currently no option for this in testrunner.sh\.bat.
You can do this using Groovy though, this will disable every manual test step in a test suite.
Regards,
Marcus
SmartBear Support
There is currently no option for this in testrunner.sh\.bat.
You can do this using Groovy though, this will disable every manual test step in a test suite.
def testSuite = context.testCase.testSuite;
def totalTestCases = testSuite.getTestCases().size();
for(n in (0..totalTestCases-1))
{
def testSteps = testSuite.getTestCaseAt(n).getTestStepsOfType(com.eviware.soapui.impl.wsdl.teststeps.ManualTestStep)
for (t in testSteps)
{
t.setDisabled(true);
}
}
Regards,
Marcus
SmartBear Support