I am writing a Perl script to test certain parts of my webpage as I make changes to it. Using the WWW::Mechanize class, how can I select a radio box and submit a form?

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

What have you tried already? Did you check the WWW::Mechanize docs?

To set a field:

$mech->set_fields('radio_group_name' => 'option');

Remember, radio buttons are just instructions to the browser on how to interact with the form widget. Ultimately, it's all just fields and values you send to the web server.

To submit a form, you use one of these methods, depending on what you are trying to do:

$mech->click_button( ... );
$mech->submit();
$mech->submit_form( ... );

It does look like there's a ticket in Google Code to provide some better examples though.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.