vote up 2 vote down star
1

I want to test whether a certain action results in a file download (a) at all, and (b) with the file having a certain name.

Is there any way to use Selenium to do this?

flag

1 Answer

vote up 2 vote down check

The current version of Selenium runs in the JavaScript sandbox so can't control things outside of the page such as downloading files, uploading files, etc.

You might find that WebDriver (soon to be Selenium 2.0) supports downloads as it is not restricted to JavaScript in the same way as Selenium 1.0. See http://code.google.com/p/selenium/wiki/GettingStarted for more information.

link|flag

Your Answer

Get an OpenID
or

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