in reply to Re^2: LWP parsing problem
in thread LWP parsing problem

To expand a bit on what our nameless member has said, the WWW::Mechanize documentation shows many methods to access the forms on the current page and also many methods to fill out fields in those forms. Under the hood, WWW::Mechanize also uses HTML::Form, but why do you want to reimplement what WWW::Mechanize does if you're already using WWW::Mechanize?

Replies are listed 'Best First'.
Re^4: LWP parsing problem
by Lawliet (Curate) on Jul 05, 2008 at 21:05 UTC

    Why? Because when I tried to use the find_all_inputs method of Mechanize, it returned data that was useless to me. I figured I could do it more simply and efficiently with HTML::Form. Apparently I am wrong :P

    Thanks for all your help.