We have the following set up for running parallel tests using selenium grid and testng.
Selenium Hub : Running the hub. Remote Control : Three remote controls running with *firefox as the environment.
We have the <suite name="Parallel Test Suite" parallel="tests" thread-count="34">
for running all the 100 tests in our test suite expecting that each remote control will run 34 test at the same time and three remote controls running 100 at the same time.
But each remote control is executing one test at a time, not concurrently.
IS there any other parameter we should be using to start the hub or the rc.
Help appreciated.
Test Suite contains 100 entries like below
<!-- 1 -->
<test name="concurrentJobs100queue01WithFirefoxOnWindows" preserve-order="true">
<classes>
<class name="testscripts.concurrentJobs100queue01"/>
</classes>
</test>
<!-- 2 -->
<test name="concurrentJobs100queue02WithFirefoxOnWindows" preserve-order="true">
<classes>
<class name="testscripts.concurrentJobs100queue02"/>
</classes>
</test>
<!-- 3 -->
<test name="concurrentJobs100queue03WithFirefoxOnWindows" preserve-order="true">
<classes>
<class name="testscripts.concurrentJobs100queue03"/>
</classes>
</test>
<!-- 4 -->
<test name="concurrentJobs100queue04WithFirefoxOnWindows" preserve-order="true">
<classes>
<class name="testscripts.concurrentJobs100queue04"/>
</classes>
</test>
<!-- 5 -->