I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2007-02-02 13:05:06-08 by abeltje in response to 4223
Re: Not able to select a check box which does not have a name attribute
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.
Direct Responses: 4228 | Write a response