Hi everyone,
Could any of you tell me what would be the effect of having a test suite configured to be run in parallel (using "methods" value), containing a set of different suites that could run by separate that also has the same parallel attribute?
Basically, want to understand how it would run my Selenium test suite on the grid with the next configuration:
<suite name="FullSuite" parallel="methods" thread-count="5">
<parameter name="browser" value="ie"/>
<parameter name="environment" value="qa"/>
<parameter name="runLocation" value="remote"/>
<suite-files>
<suite-file path="Suite_Adding.xml" />
<suite-file path="Suite_Retrieving.xml" />
<suite-file path="Suite_Retrieving.xml" />
<suite-file path="Suite_Deleting.xml" />
</suite-files>
</suite>
And every of the suites also has next atttributes: parallel="methods" thread-count="5
Would I have only 5 threads? Or there would be a sum of all threads? Do you see any gap / potential issue? Just want to ensure I'm doing the right stuff in the most optimal way.
Many thanks in advance,
Alberto.