How to get trough the detector #70
-
I mean how to pass https://hmaker.github.io/selenium-detector/ with the /dev_stuff/devtools_anti_detector.js |
Beta Was this translation helpful? Give feedback.
Answered by
kaliiiiiiiiii
Jul 15, 2023
Replies: 2 comments
-
That script was for some testing. I'm pretty sure it would be detectable.
from selenium_profiles.webdriver import Chrome
from selenium_profiles.profiles import profiles
from selenium_injector.types.by import By # locate elements
profile = profiles.Windows()
driver = Chrome(profile, options=options, uc_driver=True,injector_options={"debug":True})
driver.execute_cdp_cmd("Runtime.disable",{})
injector = driver.profiles.injector
# get url
driver.get('https://hmaker.github.io/selenium-detector/')
driver.quit() # Execute on the End! See #57 for more information |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
kaliiiiiiiiii
-
Closing as it seems to be resolved |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That script was for some testing. I'm pretty sure it would be detectable.
driver.execute_cdp_cmd("Runtime.disable",{})
might help you, but doesn't completely make it pass (and causes some issues)See #57 for more information