Downloading through IE in Perl
I want to know a way in which I can monitor the download of an application in IE through Perl. I am doing automation, and as soon as the download completes, I need to start a Perl script for processing the downloaded application. The download has to be done through IE. I found out IE::Mechanize
and LWP::Simple
in Perl but I want something which is a comb开发者_如何学运维ination of both. I also looked at URLDownloadToFile
but couldn't understand how to implement it in Perl.
If you want to use Perl through a browser (IE), use Selenium RC.
Other than that, for web automation I usually use WWW::Mechanize.
精彩评论