sreenath has asked for the wisdom of the Perl Monks concerning the following question:
I am unable to enter the text in the Emmail field. It shows an error asuse Win32::IEAutomation; # Creating new instance of Internet Explorer my $ie = Win32::IEAutomation->new( visible => 1, maximize => 1 +); # Site navigation $ie->gotoURL('http://www.google.com'); # Finding hyperlinks and clicking them # Using 'linktext:' option (text of the link shown on web page +) $ie->getLink('linktext:', "iGoogle")->Click; # Finding hyperlinks and clicking them # Using 'linktext:' option (text of the link shown on web page +) $ie->getLink('linktext:', "Sign in")->Click; # Finding text field and entering data into it # Using 'name:' option ( <input type="text" name="username" .. +.....> ) $ie->getTextBox('Email:',"sreenathdravidian")->SetValue($user) +;
Can you please help???WARNING: 'Email:' is not supported to get the object
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: WIn 32 IE:Automation
by Corion (Patriarch) on Dec 16, 2010 at 08:19 UTC |