How to set a specific download location in Mozilla - Marionette web driver?
I am having an automation script which worked well before the recent mozilla update. The selenium-python script automates some of my browser actions, and save certain reports (csv) to a defined location. I have been using selenium 2.53.6, which uses the following code : profile = webdriver.firefox.firefox_profile.FirefoxProfile() profile.set_preference('browser.helperApps.neverAsk.saveToDisk',"text/csv, application/pdf,application/octet-stream") profile.set_preference('browser.download.folderList',2) profile.set_preference("browser.download.manager.showWhenStarting",False) profile.set