Forum Discussion
SmartBear_Suppo
Alumni
16 years agoHi Ali,
What you could do is write a project save script, that would look something like this:
That will set all your TestSuites runType to SEQUENTIAL when you save the project, although if you have TestSuites opened you'll have to reopen them to see the changes, since they won't be refreshed.
Regards,
/Dragica
eviware.com
What you could do is write a project save script, that would look something like this:
import com.eviware.soapui.model.testsuite.TestSuite.TestSuiteRunType;
for( testSuite in project.testSuiteList )
testSuite.runType = TestSuiteRunType.SEQUENTIAL
That will set all your TestSuites runType to SEQUENTIAL when you save the project, although if you have TestSuites opened you'll have to reopen them to see the changes, since they won't be refreshed.
Regards,
/Dragica
eviware.com