saran_techie has asked for the wisdom of the Perl Monks concerning the following question:
Regards,use Win32::IEAutomation; use Win32::IEAutomation::Table; #Opening IE browser #$IE=Win32::OLE->new('InternetExplorer.Application'); $IE=Win32::IEAutomation->new(visible=>1, maximize=>1); #print "test\n"; #Opening the application by providing applicaiton's URL $IE->gotoURL("http://<url>"); #Set the value to a textbox in the login web page $IE->getTable('name':, '<tablename>')->tableCells$row,$column)->SetVal +ue('user');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: To set values for a textbox in a Web application
by marto (Cardinal) on Feb 11, 2009 at 09:59 UTC | |
by saran_techie (Novice) on Feb 11, 2009 at 13:19 UTC | |
by marto (Cardinal) on Feb 11, 2009 at 14:15 UTC | |
|
Re: To set values for a textbox in a Web application
by imrags (Monk) on Feb 12, 2009 at 08:25 UTC |