in reply to Re: To set values for a textbox in a Web application
in thread To set values for a textbox in a Web application
Thank You,use strict; use warnings; use win32::IEAutomation; use Win32::IEAutomation::Element; use Win32::IEAutomation::Table; use Win32::IEAutomation::WinClicker; my $IE = Win32::IEAutomation->new( visible => 1, maximize => 1); $IE->gotoURL('http://url') ; $IE->WaitforDone; $IE->getTable("class:", "as_txt_logincm_font_header_normal")->getTextB +ox('name:',"txtUserName")->SetValue('user1>');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: To set values for a textbox in a Web application
by marto (Cardinal) on Feb 11, 2009 at 14:15 UTC |