You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using Hound with chrome_driver, and many of our feature tests fail due to calls to navigate_to returning {:error, :timeout}.
By watching the Chrome window that Hound is driving, I can see that the navigate_to calls are actually resulting in the correct page being loaded in the browser, but it seems that Hound is not receiving a response (from either Hackney or ChromeDriver) indicating successful page load, so the call eventually results in the timeout error. However, if I manually reload the page in the Chrome window (or just hit enter when the focus is on the Chrome address bar), then that suddenly causes a response to be sent back to Hound and the navigate_to function then returns normally (with a nil result).
I have attached the log output from ChromeDriver. The log output for the relevant navigate_to call begins on line 2460, and extends to line 2852. If I do nothing, then that is where the log output ends and I receive a timeout error from Hound. If I reload the page in the Chrome window, however, then I get the DEVTOOLS RESPONSE beginning on line 2853, and the navigate_to call returns successfully.
We are using Hound with chrome_driver, and many of our feature tests fail due to calls to
navigate_to
returning{:error, :timeout}
.By watching the Chrome window that Hound is driving, I can see that the
navigate_to
calls are actually resulting in the correct page being loaded in the browser, but it seems that Hound is not receiving a response (from either Hackney or ChromeDriver) indicating successful page load, so the call eventually results in the timeout error. However, if I manually reload the page in the Chrome window (or just hit enter when the focus is on the Chrome address bar), then that suddenly causes a response to be sent back to Hound and thenavigate_to
function then returns normally (with anil
result).I have attached the log output from ChromeDriver. The log output for the relevant
navigate_to
call begins on line 2460, and extends to line 2852. If I do nothing, then that is where the log output ends and I receive a timeout error from Hound. If I reload the page in the Chrome window, however, then I get theDEVTOOLS RESPONSE
beginning on line 2853, and thenavigate_to
call returns successfully.chromedriver.log
The text was updated successfully, but these errors were encountered: