My testng.xml :
<suite name="Tests Suite" time-out="300000" verbose="1" annotations="JDK" thread-count="4" parallel="tests">
<test name="Tests1">
<classes>
<class name="TestingClass1">
</class>
</classes>
</test>
</suite>
In "TestingClass1" there are 4 tests but selenium grid triggers tests only on single node.
Could someone please help me in figuring out what wrong i am doing, and how to trigger tests in parallel, thanks in advance.