abhipesit has asked for the wisdom of the Perl Monks concerning the following question:
now how do i enter the keywords into the google page..... i tried with $mechanize->forms but its not working.... someone pls help me out... Any kind of help will be truly appreciated...#!/usr/bin/perl # Include the WWW::Mechanize module use WWW::Mechanize; $url = "http://www.google.com"; # Create a new instance of WWW::Mechanize my $mechanize = WWW::Mechanize->new(autocheck => 1); # Retrieve the page $mechanize->get($url); # Mention the keyword to be searched my $keyword='perl';
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: automated search using perl
by CountZero (Bishop) on Jul 13, 2009 at 20:03 UTC | |
by spx2 (Deacon) on Jul 14, 2009 at 09:04 UTC | |
by CountZero (Bishop) on Jul 14, 2009 at 12:10 UTC | |
Re: automated search using perl
by Corion (Patriarch) on Jul 13, 2009 at 19:57 UTC | |
Re: automated search using perl
by ashish.kvarma (Monk) on Jul 14, 2009 at 09:04 UTC | |
by Anonymous Monk on Jul 21, 2009 at 02:29 UTC | |
by ashish.kvarma (Monk) on Jul 21, 2009 at 05:43 UTC | |
by ashish.kvarma (Monk) on Jul 14, 2009 at 09:10 UTC |