Hi all,
I'm using Selenium WebDriver 2.35.0 with Java and TestNG, to perform a data driven test for a search.
When I run my tests for a long time (multiple runs of the same test with different data), I get to a certain point where I click on a link and the FirefoxDriver then opens a completely new Firefox window and then I get an error saying that the driver can't find the input option on the page. I think the problem is that when it opens the new window the driver is not running on the new window, which is why it can't find the input option.
I really don't want the driver to open a new window, nor switch to it, just want all my tests to run normally in the same window. Is this a known bug, a browser driver specific configuration issue or somebody knows how to solve it?
Thanks!
Carolina.-