Ok so far i have my programing going to the website i want to download link from and selecting it, then the firefox dialogue box shows up and i don't know what to do. i want to save this file to a folder on my desktop. I am using this for a nightly build so i need this to work. Please help.
Here is my code that grabs the download link from the website:
driver = web driver.Firefox()
driver.implicitly_wait(5)
driver.get("Name of web site I'm grabbing from")
driver.find_element_by_xpath("//a[contains(text(), 'DEV.tgz')]".click()
If you are an automation tester fixated on Selenium automation testing, the chances are that you might run into a requirement of testing a feature around downloading files. While being a powerful tool for performing automated browser testing, Selenium natively doesn't support download functionality.
You need to make Firefox
save this particular file type automatically.
This can be achieved by setting browser.helperApps.neverAsk.saveToDisk
preference:
from selenium import webdriver
profile = webdriver.FirefoxProfile()
profile.set_preference("browser.download.folderList", 2)
profile.set_preference("browser.download.manager.showWhenStarting", False)
profile.set_preference("browser.download.dir", 'PATH TO DESKTOP')
profile.set_preference("browser.helperApps.neverAsk.saveToDisk", "application/x-gzip")
driver = webdriver.Firefox(firefox_profile=profile)
driver.get("Name of web site I'm grabbing from")
driver.find_element_by_xpath("//a[contains(text(), 'DEV.tgz')]").click()
More explanation:
browser.download.folderList
tells it not to use default Downloads
directorybrowser.download.manager.showWhenStarting
turns of showing download progressbrowser.download.dir
sets the directory for downloadsbrowser.helperApps.neverAsk.saveToDisk
tells Firefox to automatically download the files of the selected mime-types
You can view all these preferences at about:config
in the browser. There is also a very detailed documentation page available here: About:config entries.
Besides, instead of using xpath
approach, I would use find_element_by_partial_link_text()
:
driver.find_element_by_partial_link_text("DEV.tgz").click()
Also see:
If the application is generated dynamically (mime-types) using Chrome browser will be a better approach since the Chrome will not open the file download pop-up.But multiple download option should be enabled if you need multiple downloads.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With