http://www.perlmonks.org?node_id=1003584


in reply to Select Multiple values with $mech->select( $name, \@values ) in mechanize:firefox

Use 'select' instead of 'field' and it should work.

my @values = ("GB","IE","CH"); $mech->select( $name, \@values );

Hope this helps.