I have a selenium test that fills out a form (using latest ChromeDriver) and clicks a submit button. This button then does some calculations which can take up to 5 minutes (its actually generating an SSRS report in the backend, but that shouldnt make any difference)
After 1 minute it fails with this:
No response from server for url http://localhost:53596/session/985300748128c44714abaf1690b52414/element/:wdc:1364433458070/submit
I believe the IWebElement.Submit() and .Click() will block until the page is changed (I dont really want this to happen, Id rather do my own waiting code but I can't see how to click the button without the wait?). If I can't turn this off, can I extend the timeout? I've tried setting the ImplicitylyWait timeout to be 2000 seconds but that doesnt make any difference.
Is anyone able to tell me where this 1 minute timeout is defined and how I can turn it off?