Forum Discussion
SmartBear_Suppo
Alumni
12 years agoHello,
FYI, we do not support custom code solutions.
You can call the isDisabled() method for a TestStep. So use your existing script which counts teststeps in test cases and call the isDisabled() method for the test step.
Example:
def count = 0;
if ( !testStep.isDisabled() ) {count++;}
http://www.soapui.org/apidocs/com/eviwa ... tStep.html
Regards,
Marcus
SmartBear Support
FYI, we do not support custom code solutions.
You can call the isDisabled() method for a TestStep. So use your existing script which counts teststeps in test cases and call the isDisabled() method for the test step.
Example:
def count = 0;
if ( !testStep.isDisabled() ) {count++;}
http://www.soapui.org/apidocs/com/eviwa ... tStep.html
Regards,
Marcus
SmartBear Support