Manually disconnecting and reconnecting chromedriver #2245
Answered
by
mdmintz
LimitedTime19
asked this question in
Q&A
-
Hi, I was wondering if you could help and teach me how to manually disconnecting and reconnecting chromedriver whenever we need. I understand things like driver.get or driver clicking commands automatically does, but I want to be able to try it without driver commands myself and decide when I want to hide chromedriver when needed. |
Beta Was this translation helpful? Give feedback.
Answered by
mdmintz
Nov 7, 2023
Replies: 1 comment
-
These are the methods you need for specialized UC Mode usage: driver.uc_open(url)
driver.uc_open_with_tab(url)
driver.uc_open_with_reconnect(url, reconnect_time=None)
driver.uc_click(selector) All the details can be found in this video: https://www.youtube.com/watch?v=5dMFI3e85ig |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mdmintz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
These are the methods you need for specialized UC Mode usage:
All the details can be found in this video: https://www.youtube.com/watch?v=5dMFI3e85ig