|
Hi,
One can try to find the checkbox from the form (UNTESTED):
my $form = $ie->form_number( 1 );
my @cbs = $form->find_input( undef, 'checkbox' );
for my $cb ( @cbs ) {
${$cb}->{id} or next;
${$cb}->{id} eq 'checkbox' and ${$cb}->{checked} = 1;
}
HTH,
-- Abe.
|