use strict; use warnings; use WWW::Mechanize; my $mech=WWW::Mechanize->new(noproxy => 0); my $URL="http://in.yahoo.com/"; $mech->get($URL); $mech->follow_link(text => 'Mail'); my $file=$mech->content(); open FILE_OUT , ">output.html" or die "$!"; print FILE_OUT $file; close FILE_OUT;
In reply to Re^2: Accessing web page
by Ankit.11nov
in thread Accessing web page
by Ankit.11nov
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |