How to run multiple Selenium Firefox browsers concurrently? How to run multiple Selenium Firefox browsers concurrently? selenium selenium

How to run multiple Selenium Firefox browsers concurrently?


Have you considered implementing a selenium grid?

Selenium Grid will help you scale by running tests in parallel. Just setup a hub and node with the following commands:

For the hub

java -jar selenium-server-standalone-2.30.0.jar -role hub

and for the node

java -jar selenium-server-standalone-2.30.0.jar -role node  -hub http://localhost:4444/grid/register


You can user Selenium Grd 2

  • it allows to scale by distributing tests on several machines ( parallel execution )Check Out here