howto run together multiple instance of selenium browser

Viewed 1526

Is it possible to run together multiple instance of selenium browsers and each one will work for themselve which will increase speed?

i can run one like:

ISelenium selenium = new DefaultSelenium("localhost", 4444, "*chrome", "http://localhost/");
selenium.Start();

but how to open more of them and open page inside each one?

2 Answers
Related