Forum Discussion
nmrao
10 years agoCommunity Hero
Yes, it can be achieved by using load test from your test case itself.
Overview:
https://www.soapui.org/Load-Testing/concept.html
Create load test:
https://www.soapui.org/load-testing/creating-and-running-loadtests.html
Overview:
https://www.soapui.org/Load-Testing/concept.html
Create load test:
https://www.soapui.org/load-testing/creating-and-running-loadtests.html
plaidshirt
7 years agoContributor
for(i=0;i<100;i++){
def tCase = testRunner.testCase.testSuite.testCases["Test"]
def tStep = tCase.testSteps["Request"]
tStep.run(testRunner, context)
Thread.sleep(2000);
}- HimanshuTayal7 years agoCommunity Hero
- plaidshirt7 years agoContributor
HimanshuTayal : I think so also, but maybe somebody comes and grab my solution as a useful thing. :smileyhappy: