Forum Discussion
kondasamy
11 years agoRegular Contributor
In SoapUI, there is no explicit option to disable the "Abort on Error" option for all the test case in a project, but this could be achived using Groovy script. Please copy the below script and run it using a Groovy test step,
testRunner.testCase.testSuite.project.getTestSuiteList().each
{
it.getTestCaseList().each
{
//Switch the parameter value to 'true' if you need to enable 'Abort on Error' option
it.setFailOnError(false)
}
}While running this script, this would through an information pop up; please ignore it. Hope this answers your query!
Thanks,
Samy
jbuttimer
11 years agoContributor
Thank you Samy! I will be trying your solution shortly.