jack123 has asked for the wisdom of the Perl Monks concerning the following question:
P.S. : Marto, I',m not scrapping google, just taking an example to show where the problem lies.#!perl -w use Data::Dumper; use MozRepl::RemoteObject; BEGIN { if( ! *MozRepl::RemoteObject::Methods::dive{ CODE } ) { *MozRepl::RemoteObject::Methods::dive = \&MozRepl::RemoteObjec +t::Instance::__dive; }; }; use WWW::Mechanize::Firefox; $mech = WWW::Mechanize::Firefox->new(); $mech->get('http://www.google.com/'); $mech->click(btnK); $hash = $mech->res(); print Dumper($hash);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Which function is used in WWW::Mechanize::Firefox to get the JSON and response values showing in firebug
by Corion (Patriarch) on May 17, 2012 at 14:04 UTC | |
|
Re: Which function is used in WWW::Mechanize::Firefox to get the JSON and response values showing in firebug
by marto (Cardinal) on May 17, 2012 at 14:07 UTC |