in reply to Re^2: submitting nameless form using WWW::mechanize
in thread submitting nameless form using WWW::mechanize
Every form has a number. You start counting by 1 and increment the form number whenever a new form starts. Just try it:
$mech->form_number(3); # selects the third form on the page $mech->submit; # submits the third form
|
|---|