Reputation: 6575
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 code example or point to some CPAN module which do that?
Upvotes: 0
Views: 1172
Reputation: 118158
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.
Upvotes: 3
Reputation: 168755
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)
Upvotes: 0