"You are using an anti-detect browser" when using mobile mode #2246
-
Hello! I have problems with mobile mode when accessing pixelscan.net. There it says "You are using an anti-detect browser" driver = Driver( uc=True, mobile= True, is_mobile= True) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Use these for special UC Mode URL opens: driver.uc_open(url)
driver.uc_open_with_tab(url)
driver.uc_open_with_reconnect(url, reconnect_time=None) Use this for a UC Mode click: driver.uc_click(selector) UC Mode works with Mobile Mode. (See #2169 for details and video.) |
Beta Was this translation helpful? Give feedback.
driver.default_get()
should only be used when you don't want to open a website using UC Mode. It disables UC Mode for that website, as mentioned in https://www.youtube.com/watch?v=5dMFI3e85ig.Use these for special UC Mode URL opens:
Use this for a UC Mode click:
UC Mode works with Mobile Mode. (See #2169 for details and video.)