-
Hi Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
If you run a python In UC Mode, This was covered in the video: |
Beta Was this translation helpful? Give feedback.
-
Thanks for that answer. QUESTION: If I understand how the disconnect works, it means our code stays locked for the duration of the disconnect - which will add time to scrapes with this disconnect procedure. So if we set reconnect time to 20 seconds, then our code stays locked for 20 seconds. To optimize this and get the minimum reconnection time, especially if we want to call this disconnect for clicks, is there a way to estimate the minimum amount of time to all for the duration? |
Beta Was this translation helpful? Give feedback.
If you run a python
requests.get(url)
call and the status code starts with a4
, then there's a good change that the website is blocking bots.In UC Mode,
driver.get(url)
automatically disconnects chromedriver from Chrome briefly if that is the case.This was covered in the video:
https://www.youtube.com/watch?v=5dMFI3e85ig