|
Hi, I was using uc_special_open_if_cf without any issues before, but recently it has started to give an error like Chrome object does not have it. Is there anything changed and we need to use it differently?
Please find attached the error message |
Answered by
mdmintz
May 29, 2024
Replies: 1 comment
|
That's an internal-only method. Use one of the actual UC Mode methods for opening a URL: driver.get(url) # If UC Mode and site detects bots, then uc_open_with_tab(url)
driver.uc_open(url) # (Open in same tab with default reconnect_time)
driver.uc_open_with_tab(url) # (New tab with default reconnect_time)
driver.uc_open_with_reconnect(url, reconnect_time=None) # (New tab) |
0 replies
Answer selected by
mdmintz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

That's an internal-only method. Use one of the actual UC Mode methods for opening a URL: