Ejemplo: cómo configurar las opciones de Chrome python selenium para una carpeta
chromeOptions = webdriver.ChromeOptions()
prefs = {"download.default_directory" : "/some/path"}
chromeOptions.add_experimental_option("prefs",prefs)
chromedriver = "path/to/chromedriver.exe"
driver = webdriver.Chrome(executable_path=chromedriver, chrome_options=chromeOptions)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)