http://www.perlmonks.org?node_id=596935


in reply to Mechanize, Using WWW instead of IE

$ie->follow_link( url => 'javascript:__doPostBack(\'ctl00$cpMain$pagerBottom\',\'' . $page . '\')' );

You're right in that link is Javascript based and WWW::Mechanize can't handle Javascript. In fact, I've seen Win32::IE::Mechanize suggested for use when you're trying to deal with web pages that rely on Javascript (like yours does). Because Win32::IE::Mechanize uses Internet Explorer, it can handle Javascript.

Cheers,

Brent

-- Yeah, I'm a Delt.

Replies are listed 'Best First'.
Re^2: Mechanize, Using WWW instead of IE
by bart (Canon) on Jan 29, 2007 at 12:09 UTC
    In a very recent node, Joost states that another contender; Mozilla::Mechanize, can also work with Javascript, but is based on the Gecko rendering engine instead — the core of Firefox and related browsers. The OP could make his script less dependant on MSIE, or on Windows, by allowing the user to choose between these two modules, and use whichever one is available. Judging by the docs of the latter, that appear to be largely copied from Win32::IE::Mechanize, so they claim themselves; they ought to be largely compatible. (Caveat: untested)