Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Thanks for any help!!use LWP; use HTTP::Request::Common; use WWW::Mechanize; my $url="https://student.access.fsu.edu/Index/"; $browser->get($url); #Log in to this page $browser->field('SSN',$user); $browser->field('PIN',$password); $browser->submit_form(form_number=>0); if( !$browser->success()) {print "!!!error!!!";} #if not submitted -er +ror! $browser->submit_form(form_number=>1); #click button i.e OK #This is where I can't seem to find the form submit button I have when + using lynx print $browser->uri(); #correctly https://student.access.fsu.edu/SecureScripts/WebEncore.dll? +OldWebLink.html print $browser->content();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: www login problem
by sgifford (Prior) on Nov 08, 2003 at 20:49 UTC | |
by Anonymous Monk on Nov 09, 2003 at 02:08 UTC |