in reply to Re^2: How to get back the url of a page
in thread How to get back the url of a page
This is my current set up.
foreach my $pic (@pics) { my $mech = WWW::Mechanize->new(); $mech->agent_alias( 'Windows IE 6' ); $mech->get($pic); my $location = $mech->uri(); push(@final_pics, "$location"); print "\ntesting $pic with location $location"; }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^4: How to get back the url of a page
by Anonymous Monk on May 19, 2007 at 12:42 UTC |