How to run multiple steps inside a thread?
I need to run a few threads in parallel, but inside each thread, I want to run not only one step, but a few steps (this way I can get pass or fail result from each step).
How can I do this? Can you give me a sample?
Thanks
Jirong
|
One answer
The best way tot run a few sequential steps, but in parallel with other steps, is to setup the threaded steps in a main project, but then call an inline from those threaded steps with the sequential steps defined.
--> Thread Step 1 -> inline sequential steps
--> Thread Step 2 -> inline sequential steps
<-| Thread Step 3 -> example command
~Spencer
|
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.