Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^8: fetching and storing data from web.

by choroba (Cardinal)
on Jan 27, 2012 at 14:05 UTC ( [id://950373]=note: print w/replies, xml ) Need Help??


in reply to Re^7: fetching and storing data from web.
in thread fetching and storing data from web.

It uses the same API as WWW::Mechanize, so just see WWW::Mechanize::Examples.
  • Comment on Re^8: fetching and storing data from web.

Replies are listed 'Best First'.
Re^9: fetching and storing data from web.
by chessgui (Scribe) on Jan 27, 2012 at 14:39 UTC
    Thanks. By reworking one of the examples I was able to put together a code which opens the Firefox browser, loads the CPAN search page, fills in the query field with 'WWW::Mechanize' and then submits the form:
    #!/usr/bin/perl use strict; use warnings; # the module we're looking for my $module_name = 'WWW::Mechanize'; # create a new browser use WWW::Mechanize::Firefox; my $browser = WWW::Mechanize::Firefox->new( launch => 'C:/Program Files/Mozilla Firefox/firefox.exe',tab=>'cur +rent' ); # tell it to get the main page $browser->get("http://search.cpan.org/"); # submit the query form $browser->submit_form(with_fields=>{query=>$module_name});

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://950373]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (4)
As of 2024-04-25 05:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found