Is selenium grid timing out when there are no actions being made to the browser in a certain period of time? And if so, is this timeout configurable?
I have a function that may take several minutes to execute, the behavior that I'm seeing is that after the function gets executed, none of the actions sent to the browser get made and the RC just remains stuck. This only happens if I use Selenium Grid though...
Example:
_activeBrowser.getLocation(); //gets executed successfully
Thread.sleep(120000);
System.
out.println("exited"); _activeBrowser.getLocation(); //doesn't get executed at all
Created a regression test for this case and I cannot reproduce the problem on Mac OS X. Will try on Windows.