Forum Discussion

newbiieee's avatar
newbiieee
Occasional Contributor
7 years ago

Run X number of scripts per batch on groovy scipt SoapUI

I have this code which runs all scripts inside the test suite concurrently:

 

import com.eviware.soapui.model.testsuite.TestSuite.TestSuiteRunType

log.info testRunner.testCase.testSuite.getRunType()
testRunner.testCase.testSuite.setRunType(TestSuiteRunType.PARALLEL)
assert testRunner.testCase.testSuite.getRunType() == TestSuiteRunType.PARALLEL

but it seems that the application can't handle too much scripts, question is: Is it possible to run scripts per batch? like for example I have 300 scripts and it will get only 10 scripts to run concurrently and after that another batch of 10 will be executed? 

 

Thanks in Advance!

No RepliesBe the first to reply