2ge has asked for the wisdom of the Perl Monks concerning the following question:
use strict; use warnings; use Win32::IE::Mechanize; my $ie = Win32::IE::Mechanize->new( visible => 1, left => 0, top => 0, height => 950, width => 1280, ); $ie->get('http://www.google.com'); #example! sleep 5; $, = "\n"; print my @links = $ie->links;
so I played with these values, also put $ie->get in loop, but nothing helps. So there is no workaround and I have to use sleep ?$ie->success Return true for ReadyState >= 2; in source is sub success { $_[0]->{agent}->ReadyState >= 2 }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Win32::IE::Mechanize completed?
by bart (Canon) on Apr 12, 2005 at 08:52 UTC | |
by 2ge (Scribe) on Apr 13, 2005 at 08:42 UTC |