Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to set chrome options python selenium for a folder

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)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #set #chrome #options #python #selenium #folder
ADD COMMENT
Topic
Name
5+7 =