I'm using the submit_form
function in WWW::Mechanize as follows:
eval{
my $me = $mechanize->submit_form( form_id => 'signin',
fields => {
login => 'abc',
password => 'def'} );
$me->is_success or die $me->status_line;
};
Although this throws the error of Unknown submit_form parameter "form_id"
it still retrieves the page. Why is this throwing this error?