in reply to A problem in submitting select form with LWP

As jellisii2 mentions you do need to include the hidden field 'translationNo'. This worked for me:
my $response = $browser->post( $url, { 'Sequence' => '42 Escherichia coli (strain K12)', 'seq_type' => 'DNA', 'genome' => '42 Escherichia coli (strain K12)', 'hairpin' => 'checked', 'quickChange' => 'checked', 'translationNo' => 1, } );

Replies are listed 'Best First'.
Re^2: A problem in submitting select form with LWP
by booy (Initiate) on Jan 23, 2014 at 16:10 UTC
    It do work! Thank you so much.