I have a few applications where I can effectively use the
Win32:IEAutomation module. I am making sure I understand how it works
and had some difficulty. For example, I am not able to print the URL
of a webpage using the code below. I’d appreciate your comments on how
to modify the code.


#!C:\Perl
use Win32::IEAutomation;

# Creating new instance of IE
my $ie = Win32::IEAutomation->new(visible => 1, maximize => 1);

# Site navigation
$ie->gotoURL('http://www.google.com',1);
$temp=url($ie);

print $temp


--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
http://learn.perl.org/


Reply via email to