Forum Discussion
yuwaan
13 years agoNew Contributor
What if I have 10 projects in a list and after using below mentioned code
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 )
}
}
it will run all projects in one go however I want to stop in between .... Can I perform something like diz ??
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 )
}
}
it will run all projects in one go however I want to stop in between .... Can I perform something like diz ??