phio has asked for the wisdom of the Perl Monks concerning the following question:
<form name="queryfoo" method="Post">
<select name="options" multiple>
<option value="1">OPT1</option>
<option value="2">OPT2</option>
<option value="3">OPT3</option>
<option value="1835">OPT4</option>
<option value="2487">OPT5</option>
</select>
</form>
My code is like below:
But I always get a Illegle Value error? Did I do this wrong? And I'm wondering how to set multiple value for this input? Thank you all in advance$mech->form_name("queryfoo"); my $form = $mech -> current_form; my $input = $form->find_input('options'); $input->value('3'); $mech->click('Run');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to handle multiple select in WWW::Mechanize?
by Anonymous Monk on Apr 22, 2008 at 08:04 UTC | |
by phio (Acolyte) on Apr 22, 2008 at 08:39 UTC |