Hi,
How can select a particular radio button when its
within a group.

ie.,
<form name="changeform" method="post"
action="try.cgi">
<input id="knob_radio_0" type="radio" name="knob"
value="radio1" checked='checked' onclick="return
update_knobs()">
<label for="knob_radio_0">
Radio1
</label>
<input id="knob_radio_1" type="radio" name="knob"
value="radio2" onclick="return update_knobs()">
<label for="knob_radio_1">
Radio2
</label>
<input id="knob_radio_2" type="radio" name="knob"
value="radio3" onclick="return update_knobs()">
<label for="knob_radio_2">
Radio3      
</label>
</form>

Check for the form above, the first radio button is
being checked ,while form filling i am trying to check
the radio3 and submit the form, but i couldnt find any
solution. I am using WWW::Mechanize , is there any
method to do this.

Any help will be greatly appreciated.

Thanks,
Gokul
_______________________________________________
Perl-Unix-Users mailing list
Perl-Unix-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to