How can i successfully multithread Selenium Server in Java? How can i successfully multithread Selenium Server in Java? selenium selenium

How can i successfully multithread Selenium Server in Java?


Webdriver is not threadsafe per se. Try wrapping it into a ThreadLocal.

That has helped me a lot in a similar situation.