-
hello I noticed in the repo issues of ways to integrate selenium stealth with seleniumbase but I didn't find examples of the integration with seleniumbase's SB mode, I managed to start the script by putting sb.driver but opening pixelscan I notice that the webgl values remain my own and the seleniumstealth values are not used, i'm using chrome since brave is not supported by seleniumstealth. `
` |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
When UC Mode disconnects the driver from Chrome to evade detection, it also resets any settings made by Also, it appears that using Your best bet to avoid detection is by just using regular SeleniumBase UC Mode: from seleniumbase import SB
with SB(uc=True, incognito=True) as sb:
sb.uc_open_with_reconnect("https://pixelscan.net/", 10)
breakpoint() If you still want to use |
Beta Was this translation helpful? Give feedback.
When UC Mode disconnects the driver from Chrome to evade detection, it also resets any settings made by
selenium-stealth
.Also, it appears that using
selenium-stealth
to modify settings will get detected as a possible attempt to mask your fingerprint. (There is little that I can do there, as that is an external library.)Your best bet to avoid detection is by just using regular SeleniumBase UC Mode:
If you still want to use
selenium-stealth
with SeleniumBase, there's documentation here: #2404