CodingForums.com

CodingForums.com (http://www.codingforums.com/index.php)
-   Perl/ CGI (http://www.codingforums.com/forumdisplay.php?f=5)
-   -   Problem in clicking the link in Win32-IEAUtomation in perl (http://www.codingforums.com/showthread.php?t=286271)

Analogp 01-23-2013 03:41 AM

Problem in clicking the link in Win32-IEAUtomation in perl
 
1 Attachment(s)
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.

[CODE]
<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=Issu e&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>
[CODE]

The perl code am having is given below.


[CODE]
use Win32::IEAutomation;

my $ie = Win32::IEAutomation->new( visible => 1, maximize => 1);

$ie->getLink('id:',TLB_KEY_TOOLTIP_Export_Table_View)->Click;

[CODE]



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?


All times are GMT +1. The time now is 07:55 AM.

Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.