I have a server that runs one selenium process at a time. I need to be able to run multiple selenium processes in parallel on that server. How can I do that?
-
The easiest way is just to create multiple instances of the driver.Daniel Manta– Daniel Manta2016-08-02 23:58:43 +00:00Commented Aug 2, 2016 at 23:58
-
@Jassmine can you mark Question as answered ? :)NinjaDeveloper– NinjaDeveloper2016-08-05 17:05:58 +00:00Commented Aug 5, 2016 at 17:05
Add a comment
|
2 Answers
you can use Selenium Grid to run multiple selenium processes in parallel http://elementalselenium.com/tips/52-grid
Comments
If you want parallel execution for your selenium script then you can use TestNG.