How can I control Internet Explorer with Perl?
Is it possible to control progammatically Internet Explorer with Perl and have each opened instance of IE configured to use different proxy?
Could someone provide c开发者_开发技巧ode example or point to some CPAN module which do that?
While it is entirely possible to control Internet Explorer via Perl using a variety of means (using Win32::IE::Mechanize or accessing the IBrowser2 and related interfaces via Win32::OLE), I am doubtful your requirement of running multiple instances with different proxies can be met.
Look up Selenium.
This is a browser-automation tool, commonly used for testing web sites.
It can integrate into Perl. (see http://seleniumhq.org/about/platforms.html#programming-languages)
精彩评论