grashoper has asked for the wisdom of the Perl Monks concerning the following question:
I got it to work, now I have another problem, I need to have my browser support activex controls for testing the web application is there any way to do this using lwp?use LWP; use LWP::Simple; my $browser = LWP::UserAgent->new( ); my $url="http://qasef43.mlxchange.com"; $browser->agent("Mozilla/4.0 (compatible; MSIE 5.0; Windows 98; DigExt +)"); $browser->credentials('http://qasef43.mlxchange.com:80',username,passw +ord); my $response = $browser->get($url); my $data=$response->content(); print "$data";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: trying to test login via lwp
by ysth (Canon) on Feb 26, 2008 at 23:37 UTC | |
|
Re: trying to test login via lwp
by Fletch (Bishop) on Feb 26, 2008 at 23:01 UTC |