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 -error! $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();