QI want to run test suite collection with parallel chrome headless mode in KRE command line but it stopping for fetching driver details … can someone help
As far as I see, Katalon designed the #1 “executing Test Suite Collection in parallel mode” poorly. It brought a lot of problems to me. So I am determined not to touch it. Instead, I just prefer the sequential mode — it works stable, as you already noticed.
As I’m doing KRE command line execution for first time, I also need some suggestions on best approach… currently we have 57 suites in single testsuitecollection and asked to run in KRE commandline in remote machine…. We have one KS license and one KRE floating license…. Give me some suggestions for faster and better execution ways
I could execute a Test Suite Collection with parallel mode using a single license of Katalon Studio GUI Free while specifiying 3 as the maxium parallel processes. ---- though I specified “parallel” but actually the TSC ran slowly, so that no quicker than the sequential mode.
This proves that Test Suite Collection with parallel mode requires only 1 license of Katalon Studio GUI Free.
Based on this observation, I guess that a execution of Test Suite Collection with parallel mode requires only 1 active license. Rather, I believe that the number of licenses is not checked at all in the case of #1 parallel mode.
I guess that the number of KRE license has nothing to do with your current problem.
As far as I see, the “Test Suite Collection in parallel mode” is unstable, problematic. I would recommend you not to touch it. It would waste your time.
If you are eager for “parallelism”, you should look at the #2 parallelism. Actually I do not know it at all, but as far as I read the Katalon’s doc, #2 seems to be better (better tested possibly) than #1.
In the #2, if you want 4 TestOps Agents to work in parallel, I believe that you need at least 4 KRE licenses. Simple, isn’t it?
Parallel execution of bulky Test Suites on a single machine won’t run any quicker than a sequential execution. On a single box, even if you tell a Test Suite Collection to execute multiple Test Suites in parallel, in fact the test suites run nearly sequentially. Why? Each individual Test Suite makes the machine fully occupied. So OS will allocate the CPUs+memory resources just sequentially to the Test Suites one after the other.
If @vasanthi.jayakumar wants process the bulk of Test Suites more quickly, he definitely needs to allocate multiple machines. Each machines should equip enough CPUs and memory. And he wants to distribute the bulky Test Suites into the nodes; monitor the distributed execution; collect the results and compile a final report. The more number of machines, the quicker the processing duration could be.
On the Internet, I could find some articles how to implement a distributed processing of Selenium tests. For example, with AWS, we can distribute selenium tests over mutliple nodes instanciated using ECS Fargate:
Browserstack publishes the following article:
How can we do the similar distributed processing using Katalon? — I don’t know. I have never seen an article published by Katalon about this issue.
Then, you would want to purchace at least 4 KRE licenses to implement the #2 parallelism. Can you afford of it?
Beware, a license of KRE is payable monthly for fixed amount of money regardless how long seconds/minutes/hours you actually used. It is not a pay-as-you-go system.
I think that the parallel execution of Test Suites is not the first approach you should try for faster and stable test exectuion. Seeking for parallelism would trigger difficult troubles and would waste your time.
Rather, I would recommend you to rewrite each individual test cases so that they run faster and more stable.
For example, if you use “WebUI.delay(n)” keyword in your test cases, you should avoid it. You should replace “WebUI.delay(n)” with “WebUI.waitForElementVisible(testobject, n)”. Why? “WebUI.delay(10)” will always delay your test case for 10 seconds. On the other hand, “WebUI.waitForElementVisible(testobject, 10)” is likely to pass in just 1 seconds. Avoiding “WebUI.delay” will certainly result a faster execution.
You should check the execution log line by line and identify which statement takes long seconds. You should try to find out a way to make it run quickly.
In my humble opinion, there is no automagical way that makes your tests run faster. You need to refactor your test cases one by one. You need to devote yourself for tuning every single test cases to make it run faster and more stable.
When you finished refining all your test cases, a sequential execution of your bulky test suites might run in an acceptable duration. You do not need to pay more money for this approach.
Once you have done fine-tuning your test cases, it would be an idea to try the parallelism #2 for even faster execution while paying for additional multiple machines and additional KRE licenses.
I got the answer back from my team that If we want to run faster, we should setup Selenium Grid to distribute the test to other machines rather run all tests on the same machine:
@vasanthi.jayakumar, please follow up with all the suggestions above. Let us know if any works for you. Otherwise, after 2 weeks no reply from you, I will process to close this. Thank you
??? I believe that Selenium Grid has nothing to do with the “parallel” execution. I am afraid that the suggestion from the Katalon team does not help @vasanthi.jayakumar. It rather confuses him.