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
Perl Weekly newsletter
A free weekly newsletter for people who are busy to read all the blogs. click here to check it out.