Chris Hansen
Chris Hansen

Reputation: 8687

How can I run multiple selenium processes in parallel

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

Answers (2)

If you want parallel execution for your selenium script then you can use TestNG.

http://testng.org/doc/index.html

Upvotes: 0

NinjaDeveloper
NinjaDeveloper

Reputation: 1712

you can use Selenium Grid to run multiple selenium processes in parallel http://elementalselenium.com/tips/52-grid

Upvotes: 1

Related Questions