I need to make an automated website clicker that uses cludflare detection. But I can't use undetected_chromedriver because of a problem with using the Google browser extension that I need to implement the view.
Ive already tried set the additional options. But it didn
t work.
from selenium import webdriver
`options = webdriver.ChromeOptions()
options.add_experimental_option("excludeSwitches", ["enable-automation"])
options.add_experimental_option('useAutomationExtension', False)
options.add_argument("--disable-blink-features=AutomationControlled")
driver = webdriver.Chrome(options=options)
driver.get(URL)`