monkster has asked for the wisdom of the Perl Monks concerning the following question:
This gives an output likeuse Win32::IE::Mechanize; use Data::Dumper; $ie = Win32::IE::Mechanize->new(visibile=>1); $ie->get('http://google.com'); sleep(4); print Dumper($ie);
$VAR1 = bless( { 'quiet' => undef, 'images' => undef, 'headers' => {}, '_opt' => { 'visible' => 1 }, 'forms' => undef, 'onwarn' => undef, 'onerror' => undef, 'agent' => bless( {}, 'Win32::OLE' ), 'cur_form' => undef, 'links' => undef, 'basic_authentication' => {} }, 'Win32::IE::Mechanize' );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to persist Win32::IE::Mechanize object
by Corion (Patriarch) on Aug 08, 2008 at 13:06 UTC | |
by monkster (Sexton) on Aug 11, 2008 at 12:08 UTC | |
by Anonymous Monk on Aug 11, 2008 at 12:45 UTC |