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?
Check Selenium Grid:
Getting started it’s very easy (http://selenium-grid.seleniumhq.org/get_started.html) and demo site is present too.