Hi,
I am new to perl and I am learning IEautomation using perl. I have
written following code to automate the download of a game but I am not
able to click on "Download FREE!" button.
My code is below:
#!/usr/bin/perl
use Win32::IEAutomation;
my $ie = Win32::IEAutomation->new(visible => 1, maximize => 2);
$ie->gotoURL('http://www.realarcade.com/download');
$ie->getLink('linktext:', "Fishdom")->Click();
$ie->getButton('caption:', "Download FREE!")->Click;
$ie->closeIE;
Please point me to some useful articles for IEautomation.
Thanks,
Pranjal
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/