Does Selenium WebDriver support multithreading well?
I'm trying to use it with several windows opened 2-4, and it looks like browser window (Firefox) gets freezed sometimes.
When one thread starts:
_driver.FindElement(By.Id(id)).SendKeys("MyMessage");
And another thread at the same time tries to get another page element state.
How to deal wit this?
Are there any recomendations on accessing the same page from different threads?
How to speed up the SendKeys method, and not allow selenium to access the page while SendKeys still not finished?