I'm new to Perl, currently writing a Perl script to automatically fill web forms and submit them using LWP. The website URL is ***/something.cgi and in that document there is a form I need to fill, then hit submit. That takes me to another page which has another form to fill, but the website's URL remains the same.

I managed to fill the first form and submit it using:

$res = $ua->request($f->press("submit"));

where

my $f = HTTP::Request::Form->new($forms[0], $url);

Viewing $res->as_string shows the next page source, but tried to get the new forms in order to fill it, but it gave me the same form I already have. How can I get next page in order to fill its forms and proceed?

link|improve this question

25% accept rate
feedback

2 Answers

up vote 2 down vote accepted

I would recommend you look at WWW::Mechanize and its form methods which is a subclass of LWP::UserAgent.

EDIT

Adding an example closely based on the example from my first link:

use strict;
use warnings;

use WWW::Mechanize;
my $mech = WWW::Mechanize->new();

$mech->get( 'http://google.com' );
sleep 1; ## be nice

$mech->submit_form(
    form_number => 0,
    fields      => {
        q       => 'mungo',
    }
);

print $mech->content;
link|improve this answer
thanks, wondered if you can provide more specific example, im new to perl and web programming, and can't manage to understand since no examples are found in the LINK you provided. Thanks – WhiteShark88 Aug 1 '11 at 19:57
see the edit in my answer for an example – mrk Aug 1 '11 at 21:05
Thanks, it worked . – WhiteShark88 Aug 2 '11 at 10:36
feedback

The form you are trying to script must be using some paramter or cookie to determine which page of the multi-page form to process. Look at the cookies returned in

print $res->header();

to see if there are cookies being set for a session-ID or other parameter that you need to pass back in.

Also, look at the source of the first form page vs the second, see if there are hidden input types that indicate that the second submission is for the second form page. Or, look at the value of the submit button tag, maybe that is different on the second page.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.