use 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 ( ) $ie->getTextBox('Email:',"sreenathdravidian")->SetValue($user); #### WARNING: 'Email:' is not supported to get the object