How to run the test case multiple times in SOAPUI?
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2016
08:53 AM
07-11-2016
08:53 AM
How to run the test case multiple times in SOAPUI?
Hi,
I have test cases built in SOAPUI for performance testing, currently each test case runs for single time.
I want to run each test case 3 times in soapui to get the average performance time. Is this possible in SOAPUI?
Thanks,
Lokesh
4 REPLIES 4
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2016
09:18 AM
07-11-2016
09:18 AM
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
Regards,
Rao.
Overview:
https://www.soapui.org/Load-Testing/concept.html
Create load test:
https://www.soapui.org/load-testing/creating-and-running-loadtests.html
Regards,
Rao.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2019
12:07 AM
07-30-2019
12:07 AM
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); }
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2019
02:00 AM
07-30-2019
02:00 AM
I think by this time @sreelokesh would have successfully completed the project 😛
Click "Accept as Solution" if my answer has helped,
Remember to give "Kudos" 🙂 ↓↓↓↓↓
Thanks and Regards,
Himanshu Tayal
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2019
12:09 AM
08-12-2019
12:09 AM
@HimanshuTayal : I think so also, but maybe somebody comes and grab my solution as a useful thing.
