Multiple project suite execution in series
Hello,
My ultimate goal is to be able to execute across multiple devices at the same time. However, I would like to execute my tests as efficiently as possible. I am currently using network suits.
My final goal is to be able to execute the following all inside the same Job:
On device A:
Run function Test1 from ProjectSuite1
Run function Test2 from ProjectSuite2
On device B:
Run function Test3 from ProjectSuite3
On device C:
Run function Test3 from ProjectSuite3
Running on device B and C is straightforward, but A in a little complicated. Essentially, I would like to be able to execute two tests on device A, where the second one begins once the previous one finishes, from differnt ProjectSuits.
Is there any way to do this?
That is an option that I explored in the past, however it does not fit my needs.
For those interested, I have since found a solution:
A Master Network Suite calls a Project Suite Parent which in itself references (by adding an existing item) the test projects that I want to run. From there, I just add the tests from each project I want to run!
Thanks for the help!