Im trying to download a file with perl's WWW::Selenium. I get a popup box asking me if I want to save/open the file. I want to manipulate it and say 'save' at some given location. Im not sure how this can be done. Please help.

P.S: I could not use WWW::Mechanize for this page and I have to use Selenium

Thanks a lot!

link|improve this question

0% accept rate
It'd be helpful to know what operating system you're on because that will change the response. – Weegee Jul 13 '10 at 19:57
feedback

2 Answers

Selenium cannot handle the save box but a third party utility, AutoIt, can. What we do is have our testing code use selenium commands to click the download link, and then execute a compiled AutoIt script to save the file to the disk.

link|improve this answer
Thanks Zugwalt!! I thought my problem could not be solved in selenium 1. Will try this out... – user343409 Jul 16 '10 at 11:46
feedback

My understanding is that with selenium 1.x it can't be done, and has yet to be implemented in selenium 2 yet.

See,

http://www.jsystemtest.org/?q=node/70

and

http://wiki.openqa.org/display/SEL/Selenium+Core+FAQ#SeleniumCoreFAQ-Ican%27tinteractwithapopupdialog.Myteststopsinitstracks%21

link|improve this answer
No, but if he tells us which OS he's using he might be able to use WWW::Selenium along with another module to control the app's dialog boxes. – Weegee Jul 16 '10 at 13:17
Right, sorry. should have wrote, "with just selenium ... can't be done". – ascarb Jul 16 '10 at 13:25
feedback

Your Answer

 
or
required, but never shown

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