in reply to use Win32::IEAutomation;
Make sure that you have Win32::OLE installed.#!perl use strict; use warnings; use Win32::IEAutomation; my $ie = Win32::IEAutomation->new( visible => 1, maximize => 1, warnings => 1, ); $ie->gotoURL('http://www.example.com'); $ie->getTextBox('name:', "importFile")-> SetValue("C:\test\9780547076034NIMAS.opf"); $ie->WaitForDone(); $ie->closeIE();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: use Win32::IEAutomation;
by johngg (Canon) on Dec 26, 2011 at 18:10 UTC | |
by tye (Sage) on Dec 28, 2011 at 16:55 UTC |