-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Devtools Runtime detection #57
Comments
merge to #44 Thanks a lot for your nice formatted issue:) |
Definitely waiting desperately for some solution. Undetected chromedriver's solution was to ditch chromedriver (soon) Check discussion ultrafunkamsterdam/undetected-chromedriver#1321 (comment) |
oh that's interesting. Wonder what's happening in the background//how it works |
Do u plan on working for a solution tho or is it on stall rn? |
Uh yeah I actually I do. But undetected-chromedriver's probably gonna have a solution first, as I currently don't really have a approach for it |
driver.execute_cdp_cmd("Runtime.disable",{})
driver.get('https://falix.gg/?id=12345678') fixes this issue for me.
see Runtime.disable for documentation |
script execution may not matter much but find element and click are crucial for selenium app. That being said, this still is huge progress 🥳 |
UPDATE:Selenium-Driverless now passes bet365, cloudfare and others:) Original comment
there might be a way to automate chrome using a remote-controlled chrome-extension |
@xAffan I'd like to do further tests on that, but unfortanely, the website seems down (ERR_CONNECTION_TIMED_OUT). Any other sites I could use for that? |
i dont like extension |
with selenium-driverlesswarning:
from selenium_profiles.webdriver import Chrome
from selenium_profiles.profiles import profiles
from selenium_driverless.webdriver import ChromeOptions
from selenium_driverless.types.by import By
profile = profiles.Windows() # or .Android
options = ChromeOptions()
# options.add_argument("--headless=new")
driver = Chrome(profile, options=options, driverless_options=True)
# get url
driver.get('https://nowsecure.nl#relax') # test fingerprint
driver.quit() # Execute on the End! see documentation for usages |
@kaliiiiiiiiii please can you contact me regards to work email info@cashmakeruk.com |
Describe the bug
Falix.gg detects the chromedriver, and subsequently redirects you to about:blank.
To Reproduce
Expected behavior or error-message
There should not have been a redirect to about:blank. You can verify the behavior of the site by visiting normally.
Environment (please complete the following information):
Additional context
I would like to add that the website detects dev tools and redirects you. I think detecting dev tools correlates to detecting Chromedriver.
The text was updated successfully, but these errors were encountered: