Solved
Forum Discussion
jscorzelli
10 years agoOccasional Contributor
Sure, is it possible to run two test steps in parallel (in the same test case)?
nmrao
10 years agoCommunity Hero
I believe not by designed.
Because, steps are always gets executed one after other.
If needed to execute in parallell, then they have to be a test case each where soapui allows to run the test cases in parallell.
By the way, what is your use case?
But, one can write a groovy script to execute the steps in parallell.
Because, steps are always gets executed one after other.
If needed to execute in parallell, then they have to be a test case each where soapui allows to run the test cases in parallell.
By the way, what is your use case?
But, one can write a groovy script to execute the steps in parallell.
- jscorzelli10 years agoOccasional Contributor
Do you know what that groovy script would look like?
The use case is I have one step that basically can't finish until another step begins. I want to keep them in the same test case so I can eventually use alertsite.
- nmrao10 years agoCommunity HeroThank you for the request which provoked me to create sample project to demonstrate the same.
Please find the details below:
https://github.com/nmrao/sample-soapui-projects/blob/master/runStepsInParallel/READ-ME.md- jscorzelli10 years agoOccasional Contributor
Awesome! Thanks so much for all your help!