in reply to Mechanize hidden fields

Mech won't change hidden fields. This is what I do to get around it:
foreach my $form ($mech->forms()) { map { $_->readonly(0) } $form->inputs(); }