|
Posted by Ben Morrow on February 3, 2008, 12:13 pm
Please log in for more thread options
>
> Trying to submit the second form, when there are two forms on the page both
> called "submit" using www::Mechanize and Html::Form
>
> the first form html is: <input type="submit" name="submit" value="Go" />
>
> The second form's: <input type=submit name=submit value=" S E N D ">
Try
$mech->click_button(value => ' S E N D ');
Ben
|