HTML snippet:

  <input type='hidden' name='id' value='default' />

I'm using WWW::Mechanize to fill in a form, an input of which is above. I'm doing this:

$inputs[0]->value("nondefault");

since it's the first input in the form. But is there a way to refer to it as id?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

According to the documentation,

$form->param('id', 'nondefault');
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.