Reputation: 8687
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?
Upvotes: 0
Views: 561
Reputation: 1
If you want parallel execution for your selenium script then you can use TestNG.
http://testng.org/doc/index.html
Upvotes: 0
Reputation: 1712
you can use Selenium Grid to run multiple selenium processes in parallel http://elementalselenium.com/tips/52-grid
Upvotes: 1