undetected-chromedriver icon indicating copy to clipboard operation
undetected-chromedriver copied to clipboard

Still being detected on fingerprint.com

Open BersXx opened this issue 10 months ago • 0 comments

I am using both of these codes to test and still the same results:

import undetected_chromedriver as uc
import time

def main():
    driver = uc.Chrome(headless=False, use_subprocess=False)
    driver.get('https://fingerprint.com/products/bot-detection/')
    time.sleep(10)
    driver.save_screenshot('nowsecure.png')
    
    driver.quit()

if __name__ == '__main__':
    main()

from selenium import webdriver
import undetected_chromedriver as uc
import time

# Create a Chrome WebDriver instance using undetected_chromedriver
options = uc.ChromeOptions()

options.add_argument('--disable-blink-features=AutomationControlled')
options.add_argument("--disable-extensions")
options.add_argument("--disable-popup-blocking")

driver = uc.Chrome(options=options)

try:
    # Open the URL
    driver.get('https://fingerprint.com/products/bot-detection/')
    
    # Wait for 100 seconds
    time.sleep(100)
finally:
    # Close the browser
    driver.quit()

image

BersXx avatar Apr 06 '24 11:04 BersXx