Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any kind of API that can allow me to manipulate a file download dialog in Firefox? (I want to access the one that appears when user does something, not initiate one myself).

What I want to do is to access this dialog from Selenium (and whether Selenium "privileged mode" is enough to access chrome interface is something I am not sure about as well).

share|improve this question
I’ve just spent the best part of three weeks configuring my own Apache virtual private server for the first time (because it’s a bit tricky running Selenium on shared hosting), getting Firefox, Selenium and Python working together, writing actual Python code to step through a very JavaScript-heavy site, all to download a file at the end of it. I then realised I had no idea how to actually access the downloaded file. I’m really glad you asked the question first. – Paul D. Waite Apr 4 '11 at 22:38

7 Answers

up vote 4 down vote accepted

Not that I know of. But you can configure Firefox to automatically start the download and save the file in a specific place. Your test could then check that the file actually arrived.

share|improve this answer
Ok, I think I'll go with this solution. – Andrey Shchekin Jul 24 '09 at 22:30

I have a solution for this issue, check the code:

    FirefoxProfile firefoxProfile = new FirefoxProfile();

    firefoxProfile.setPreference("browser.download.folderList",2);
    firefoxProfile.setPreference("browser.download.manager.showWhenStarting",false);
    firefoxProfile.setPreference("browser.download.dir","c:\\downloads");
    firefoxProfile.setPreference("browser.helperApps.neverAsk.saveToDisk","text/csv");

    WebDriver driver = new FirefoxDriver(firefoxProfile);//new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"), capability);

    driver.navigate().to("http://www.myfile.com/hey.csv");
share|improve this answer

I got stuck on the same Problem, but I found a solution. I did it the same way as this blog did.

Of course this was Java, I redid it in Python.

fp = webdriver.FirefoxProfile()

fp.set_preference("browser.download.folderList",2)
fp.set_preference("browser.download.manager.showWhenStarting",False)
fp.set_preference("browser.download.dir",getcwd())
fp.set_preference("browser.helperApps.neverAsk.saveToDisk","text/csv")

browser = webdriver.Firefox(firefox_profile=fp)

In my example (like the blog) it was a CSV file. But when you need more, there are stored in the ~/.mozilla/$USER_PROFILE/mimeTypes.rdf

share|improve this answer

Dont know, but you could perhaps check the source of one of the Firefox download addons.

Here is the source for one that I use Download Satusbar.

share|improve this answer
Thanks, that very interesting (but proves that is either impossible or insanely hard unless I am writing an extension with xul parts). – Andrey Shchekin Jul 24 '09 at 22:31

I didnt unserstood your objective, Do you wanted your test to automatically download file when test is getting executed, if yes, then You need to use custom Firefox profile in your test execution.

In the custom profile, for first time execute test manually and if download dialog comes, the set it Save it to Disk, also check Always perform this action checkbox which will ensure that file automatically get downloaded next time you run your test.

share|improve this answer

You could delegate the downloading part to another tool like wget. I described the details in our blog:

http://blog.codecentric.de/en/2010/07/file-downloads-with-selenium-mission-impossible/

Andreas

share|improve this answer

Please use this git repo for selenium downloads. You may have to add your file type in env.rb (profile['browser.helperApps.neverAsk.saveToDisk']).

https://github.com/sivajankan/standalone-cuke-selenium-download

All the best! Siva

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.