Tuesday, 7 October 2014

Test 12: Enter a keyword in search box, submit the form and check title of result page

Test:
Enter a value in a form of a page, submit the form and check title of resulting page

Learning: 
submit_form is used to submit a form


Solution:

use WWW::Mechanize;
use LWP::UserAgent;
my $m = WWW::Mechanize->new();
$m->get( "http://en.wikipedia.org/wiki/Main_Page" );
$m->submit_form(
    form_number => 1,
    fields    => { search  => 'honey', },
    button    => 'go'
);
$tmp=$m->title;
print "$tmp\n";


output snapshot:

No comments:

Post a Comment