in reply to Can't call method "readystate" on an undefined value at C:/Perl/site/lib/Win32/IEAutomation.pm line 562
Do you get the same error with the following script?
use warnings; use strict; use Win32::IEAutomation; my $url = 'http://www.perlmonks.org/?parent=1070018;node_id=3333'; my $ie = Win32::IEAutomation->new( visible => 1); $ie->gotoURL($url); $ie->WaitforDone(); $ie->closeIE();
|
|---|