"You are using an anti-detect browser" when using mobile mode #2246
Answered
by
mdmintz
longnguyenQB
asked this question in
Q&A
|
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) |
Answered by
mdmintz
Nov 7, 2023
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.) |
5 replies
Answer selected by
mdmintz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

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.)