in reply to Re^2: Webpage "get" slow with WWW::Mechanize
in thread Webpage "get" slow with WWW::Mechanize
The page linked in my previous post says:
WWW::Mechanize is a proper subclass of LWP::UserAgent and you can also use any of LWP::UserAgent's methods.
So, you can use LWP::UserAgent's timeout method. eg:
my $ua = WWW::Mechanize->new; $ua->timeout (5);
|
|---|