Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
At this point I just get the original page but not the following page that I want to reach. I dont get any warning or something... But it seams that I dont post the page. There is only one case that the real page does return to its original: no "Sequence"...my $url = URI->new("http://rna.tbi.univie.ac.at/cgi-bin/RNAfold.cgi"); $mech->get($url); if($mech->success()) { $mech->form_number(1); $mech->set_fields( name => "$names[$num]", Sequence => "$lines[$num]", pffold => "pf", Params => "RNA", Temp => "37", email => 'KaiAllard@web.de' ); $mech->untick(toggles => "-4"); $mech->untick(toggles => "-d"); $mech->tick(toggles => "-noCloseGU"); $mech->tick(toggles => "-noLP"); $mech->untick(plot => "on"); $mech->untick(SVG => "on"); $mech->untick(SSview => "on"); $mech->click_button(value => "Fold it"); if($mech->success()) { ... do something
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Mechanize Problems
by planetscape (Chancellor) on Dec 13, 2005 at 10:37 UTC | |
by Anonymous Monk on Dec 14, 2005 at 17:58 UTC | |
by planetscape (Chancellor) on Dec 14, 2005 at 20:17 UTC | |
|
Re: Mechanize Problems
by gu (Beadle) on Dec 12, 2005 at 18:51 UTC | |
by Anonymous Monk on Dec 12, 2005 at 18:57 UTC |