I'm using selenium chromedriver in nodejs to write some end-to-end tests.
When loading "myurl", the command await driver.get("myurl")
always timeouts.
In network I see that there is a websocket (appcues) which continues (status "pending").
I assume that selenium thinks there is still things to load, but the page is already loaded, it takes 2 seconds to load the whole page, except that the websocket is still running.
Is there a way to use driver.get()
and specify to ignore explicit requests to be finished ? (since the websocket will never stop).