Skip to content

How to get trough the detector #70

Closed Answered by kaliiiiiiiiii
dudongboxian asked this question in Q&A
Discussion options

You must be logged in to vote

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)

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

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by kaliiiiiiiiii
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #69 on July 15, 2023 10:34.