Forum Discussion
byter1
15 years agoOccasional Contributor
Hi, The below script is working perfectly and projects are being run ok.
Although, I am wondering is it possible to view the results from running the tests?
Thanks for your help.
Although, I am wondering is it possible to view the results from running the tests?
Thanks for your help.
eviware support wrote: Hello,
Create a new Project with a TestCase and a single Groovy TestStep:
for(project in com.eviware.soapui.SoapUI.workspace.projectList) {
if(project.open && project.name != testRunner.testCase.testSuite.project.name) {
log.info "Running project: " + project.name
project.run( null, false )
}
}
Running this will cause all other open Projects to run, good luck!
Regards,
Dain
eviware.com