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-03 11:27:53-08 by abeltje in response to 4228
Re: Not able to select a check box which does not have a name attribute
Hi, does this checkbox have an onclick javascript-handler attached to it? if so, you might want to call the click() method on it: ${$cb}->{id} eq 'checkbox' and ${$cb}->click; else you must set the value explicitly: ${$cb}->{id} eq 'checkbox' and ${$cb}->{value} = 'Yes', ${$cb}->{checked} = 1; HTH, -- Abe.
Direct Responses: 4252 | Write a response