- or download this
<select id="birth_month" name="birthdate">
<option value=""> -- </option>
...
<option value="01"> 01 </option>
...
</select>
- or download this
$mech = Test::WWW::Mechanize->new();
...
...
# or
$mech->set_fields({ ..., 'birthdate' => ['01',0] });
- or download this
$mech->field('birthdate', ['01'], 0);
$mech->field('birthdate', ['17'], 1);