
Analog
New User
Jan 22, 2013, 3:17 AM
Post #1 of 2
(5436 views)
|
Problem in clicking link using IEAutomation
|
Can't Post
|
|
Hi, I wants to click the link which contains the image over it in perl IEAutomation. The html source code for that link is given below . <td id='KEY_TOOLTIP_Export_Table_View' class='IconSpacing'> <a id='TLB_KEY_TOOLTIP_Export_Table_View' href="javascript:getCheckedList('/pmsmart/Request?Key=pop_export_item_tableview&OwnerType=Prj&OwnerID=181893&ItemType=Siu&DisplayCategory=Issue&DispCatEng=Issue&SearchCount=11&IsRootFolder=false&NSPs=Y','Please select Issue to edit',false)" title="Export Issue Table View" > <img src='images/export_projects.gif?RN=6.3_HF14' width='16' height='16' border='0' /> </a> </td> The perl code am having is given below. use Win32::IEAutomation; my $ie = Win32::IEAutomation->new( visible => 1, maximize => 1); $ie->getLink('id:',TLB_KEY_TOOLTIP_Export_Table_View)->Click; But it is not clicking that link which contains image. I have attached the snapshot of the webpage also. Anyone can tel me how to click the link?
(This post was edited by Analog on Jan 22, 2013, 3:24 AM)
|