-
How can I perform all clicks manually using 'sb.driver.uc_click' in SeleniumBase? In other words, instead of automation, the user will click manually. Will this method make it undetected? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
I think not, although I'm not sure, uc_click disconnects and reconnects to the page during a click, whereas a normal user click does not do this. (https://youtu.be/5dMFI3e85ig?si=k9tcX6N7Wn4Cpz2m 26:43 in guide video) |
Beta Was this translation helpful? Give feedback.
-
Regular manual clicking during UC Mode can get you detected because those websites aren't looking specifically at the click, but they are looking at your environment settings / Chrome variables / etc. The However, if you want to do some manual actions during UC Mode, first call |
Beta Was this translation helpful? Give feedback.
Regular manual clicking during UC Mode can get you detected because those websites aren't looking specifically at the click, but they are looking at your environment settings / Chrome variables / etc. The
driver.uc_click(selector)
method disconnects chromedriver from Chrome immediately after the click for a very short time... If a website looks for traces of chromedriver, then it won't find it if chromedriver disconnected fast enough.However, if you want to do some manual actions during UC Mode, first call
driver.reconnect(timeout)
, which will disconnect chromedriver from Chrome for that many seconds, and then you can perform manual actions safely before your time runs out.