Forum Discussion
SmartBear_Suppo
Alumni
15 years agoHi Armen,
you could add the following to the setup script of your TestCases:
for( s in testCase.testStepList )
{
if( s instanceof com.eviware.soapui.impl.wsdl.teststeps.WsdlPropertiesTestStep )
s.clearPropertyValue()
}
or if you always want it to happen for all your testcases you can put this in a project level TestRunListener.beforeRun event
Does that help?
regards!
/Ole
eviware.com
you could add the following to the setup script of your TestCases:
for( s in testCase.testStepList )
{
if( s instanceof com.eviware.soapui.impl.wsdl.teststeps.WsdlPropertiesTestStep )
s.clearPropertyValue()
}
or if you always want it to happen for all your testcases you can put this in a project level TestRunListener.beforeRun event
Does that help?
regards!
/Ole
eviware.com