Forum Discussion
- Hi Ali,
you could try this script:
import com.eviware.soapui.support.xml.XmlUtils;
import com.eviware.soapui.impl.wsdl.teststeps.WsdlGroovyScriptTestStep;
import com.eviware.soapui.impl.wsdl.teststeps.WsdlTestStep;
for(i in project.testSuiteList) {
for(o in i.testCaseList) {
for(r in o.testStepList) {
if(r instanceof WsdlGroovyScriptTestStep && r.name.equals("debug"))
o.removeTestStep((WsdlTestStep) r);
}
}
}
regards!
/Dragica
eviware.com