in reply to check box in a form

What does your code for checking the box look like at the moment?

Replies are listed 'Best First'.
Re^2: check box in a form
by shankara (Initiate) on Jul 27, 2013 at 21:54 UTC

    My current code looks like this

    my $mech = WWW::Mechanize->new; $mech->get($url); $mech->follow_link( text_regex => qr/Please click here/ ); $mech->submit_form( form_number => 1, fields => { aupAgree => '1' }, );