undetected-chromedriver
undetected-chromedriver copied to clipboard
nodriver infinite wait on page load
I have a custom extension to handle the proxy. If proxy is having issues, seems the
nodriver browser.get(...)
fails, but doesn't error, nor time out, checking the source, there is no timeout arg for the browser.get(...) call so not sure what can do to get out of this, as it will just wait forever
Any ideas?
Cheers
use get combined with asyncio to allow adding a timeout for the operation like below: await asyncio.wait_for(browser.get(url), timeout=120)
use get combined with asyncio to allow adding a timeout for the operation like below: await asyncio.wait_for(browser.get(url), timeout=120)
cheers, thank you very much. I'll try this out 👍