Can Selenium use multi threading in one browser? Can Selenium use multi threading in one browser? selenium selenium

Can Selenium use multi threading in one browser?


WebDriver is not thread-safe. The issue of thread-safety isn't in your code but in the actual browser bindings. They all assume there will only be one command at a time (e.g. like a real user). But you can on the other hand instantiate one WebDriver instance for each thread but it will launch multiple browsers which will consume more memory.


The multithreading should be done on different instances of Webdriver as Webdriver itself is a single thread.

Different threads can be run on same Webdriver, but then the results of the tests would not be what you expected. Let me explain it.

When you use multithreading to run different tests on different tabs(that't not impossible, little bit of coding is required), the actions you will perform like click or send keys will go to the opened tab that is currently focused regardless of the test running. That means all the test will run simultaneously on the same tab that has focus and not on intended tab.

You can read about multithreading in Webdriver.