from selenium import webdriver from selenium.webdriver.chrome.service import Service as ChromeService from webdriver_manager.chrome import ChromeDriverManager from selenium.webdriver.chrome.options import Options options = Options() options.add_experimental_option("detach", True) driver = webdriver.Chrome(service=ChromeService(ChromeDriverManager().install()), options=options) driver.get("amazon.com") driver.maximize_window()
Selenium- Can't access "Chrome is being controlled by automated test software"
Users browsing this thread: 1 Guest(s)