Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I have a page I want to automate but the form doesn't have a name/id and the form number changes cause it's dynamic. The form ACTION of this form is "http://www.lyricsdownload.com". Is there any way using WWW::Mech I can search for this?
Comment on www::mech looking for specific form action
yup -- search through the $mech->forms array (elements are HTML::Form objects) for the one you want (yes could be slightly more efficient w/a loop instead of grep).