in reply to Link prefetching in LWP

LWP::UserAgent does not support link prefetching. It also does not support JavaScript. If you want to automate a website in general, WWW::Mechanize behaves more like a common browser than LWP::UserAgent does, but it also does not support Javascript. If the website you're automating needs Javascript, see Win32::IE::Mechanize.

Replies are listed 'Best First'.
Re^2: Link prefetching in LWP
by balamuruganvg (Initiate) on Feb 19, 2009 at 09:37 UTC
    Thanks for the quick response. The website does use javascript, I'll try Win32::IE::Mechanize.
      Win32::IE::Mechanize did the trick :)