I have a Junit test suite that I am using to run a series of selenium tests. I need to run these tests on several platforms (browser/OS combos, mobile devices). Is there a way for me to run the suite in parallel with 4 other instances of the same suite (5 total), each with different config settings (settings for the RemoteWebDriver).
Should I us a parallelized runner (I've seen a few options) on each test within the suite or parallelize the suite itself?
Also, is there a way to run a sequence of these parallel runs? (i.e. 5 parallel runs followed by another 5 parallel runs, etc.)