I have 2 or 3 scripts tests that need to run.
It does not need to be in order.
For example, I have 3 script tests call Test1, Test2 and Test3.
I created master script test that would run 3 tests above.
How can I do that?
Thank you
Solved! Go to Solution.
Hi,
Parallel execution of tests on the same machine is not possible. Only sequential one. This is just because TestComplete emulates human user and the human cannot work with tested application in parallel.
Parallel execution on several machines is possible with the help of the Network Suite functionality. See https://support.smartbear.com/testcomplete/docs/testing-approaches/parallel-testing.html for more details.
Hi,
Parallel execution of tests on the same machine is not possible. Only sequential one. This is just because TestComplete emulates human user and the human cannot work with tested application in parallel.
Parallel execution on several machines is possible with the help of the Network Suite functionality. See https://support.smartbear.com/testcomplete/docs/testing-approaches/parallel-testing.html for more details.
I did not mean the parallel testing.
I think I make the confusion about this.
Because I have some small tests that need to repeat all the time in the big test.
Just like small tests is one to steps for the big test.
Maybe it can be include other script files to the test, so that it can run the scripts during the test.
Hi,
I am not sure I got the question...
I think that you are not asking for something like this:
function main()
{
Test1();
Test2();
Test3();
}
function Test1()
{
...
}
function Test2()
{
...
}
function Test3()
{
...
}
What are you looking for?
Thanks for the help, Alex!
@kevintran1308, please let us know if the question was resolved.
Subject | Author | Latest Post |
---|---|---|