having problem on using uc_special_open_if_cf with Driver() #2813
-
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 |
Beta Was this translation helpful? Give feedback.
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) |
Beta Was this translation helpful? Give feedback.
That's an internal-only method. Use one of the actual UC Mode methods for opening a URL: