in reply to Re^3: stuck with WWW::Mechanize drop down list
in thread stuck with WWW::Mechanize drop down list

I was just about to suggest mech-dump, good that you are already using it!

Mechanize will only return form elements that are within <form></form> elements.

The "All" dropdown is not within a set of form tags, it directly triggers javascript to reload the page. In cases like this you just have to figure out what the script is doing and duplicate. Possibly just by inspecting the request URL submitted by the browser.

This is an area where scraping pages becomes tedious and tricky.

  • Comment on Re^4: stuck with WWW::Mechanize drop down list

Replies are listed 'Best First'.
Re^5: stuck with WWW::Mechanize drop down list
by abualiga (Scribe) on Jun 02, 2012 at 13:22 UTC

    Thanks again!