--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to selenium-user...@googlegroups.com.
To post to this group, send email to seleniu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/b713a2a9-a591-4ddf-9273-53d3e888bc94%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Max,In the past when I used to manage the Grid for my previous org, here's the setup that held up for us without much of issues :
Every node machine supported :hou
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/27f7ebb7-97ec-4b20-9bf8-5d453b881fc4%40googlegroups.com.
<suite name="atepaca6" verbose="1" configfailurepolicy="continue" parallel="tests" thread-count="2" >
Here is the Test Config :
<test name="1" preserve-order="true">
<classes>
<class name="main.java.tests.factory.atepaca6.SurgicalScheduleManagement_Scheduling_Assessment"/>
</classes>
</test>
In Each Test I have 24 java files .Each Java Class has 5 Test cases .It is Open browser , Launch app and Close browser.
Am am creating an instance of 6 chrome browsers .
Now What is the exact use of Thread here .
Even if thread is 0 , my 6 instances opens up for each java class .
Please help me in understanding what is the importance of Thread if I have given 2 or 4 or 6 here .
How does it vary.