0
votes

I have a BDD framework and using NUnit for test execution.I am trying to implement selenium grid wherein as the default configuration ,I have 5 instances of chrome , firefox and 1 of IE. However when i select multiple tests from VS to run from a node on lets say chrome, they only run sequentially and not in parallel. I tried using MaxInstances and MaxSessions also.

1

1 Answers

0
votes

Selenium Grid has got nothing to do with scheduling tests in sequence or in parallel. You would need to configure NUnit to run tests in parallel. The Grid is merely an execution environment which by default will support parallel test execution, but since the tests need to be spun off in parallel, which NUnit should be doing.