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 2005-02-04 19:42:16-08 by e2020
can not select checkbox
hello 1. this forum is a good idea - very helpful :-) 2. i need to select this checkbox:
<input type="checkbox" name="terms" class="blue">
but I can't. I tried:
. $ie->tick('terms', 'checked' ); and $ie->set_visible( [checkbox=>'SELECT'] );
but no luck - could someone please help? I don't know how to make this right... thanks in advance! all the best from germany, oliver e2020[ @ ]gmx.de
Direct Responses: 35 | Write a response
Posted on 2005-02-04 23:57:32-08 by abeltje in response to 31
Re: can not select checkbox
Hi,

> <input type="checkbox" name="terms" class="blue">

That checkbox doesn't have a VALUE attribute. My guess is, it will be undef.
$ie->tick( terms => undef );

should work, since tick() wants to have both NAME and VALUE attribute.

HTH
-- abeltje
Direct Responses: Write a response