KaiAllard_ has asked for the wisdom of the Perl Monks concerning the following question:
my $url = URI->new('http://www.safe.nite.go.jp/data/hazkizon/' . 'pk_e_kizon_input_second.home_object'); for my $cas ( '50-00-0', '50-50-1' ) { $mech->get($url); if ( $mech->success() ) { $mech->form_number(1); $mech->select( sel_item1 => 'cas_no' ); $mech->set_visible( [ text => $cas ] ); $mech->select( search_meth1 => 'full' ); $mech->submit(); } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Trouble with posting to a webpage
by KaiAllard_ (Initiate) on Nov 27, 2007 at 08:59 UTC | |
by erroneousBollock (Curate) on Nov 27, 2007 at 09:51 UTC | |
by KaiAllard_ (Initiate) on Nov 27, 2007 at 13:57 UTC |