Micro Focus QTP (UFT) Forums
How to click on hyperlink using QTP - Printable Version

+- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums)
+-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP)
+--- Forum: UFT / QTP Beginners (https://www.learnqtp.com/forums/Forum-UFT-QTP-Beginners)
+--- Thread: How to click on hyperlink using QTP (/Thread-How-to-click-on-hyperlink-using-QTP)



How to click on hyperlink using QTP - kvjeevan - 04-02-2008

Hi,

I am looking for help to click on link in the website and download patches using QTP?

I have a table in the webpage and i have links in the component column and i want to click on each link and download the patch for example here is the link http://www.microsoft.com/technet/security/bulletin/ms08-014.mspx?

Regards,
Jeevan kumar


RE: How to click on hyperlink using QTP - niranjan - 04-04-2008

First add this webtable to your object repository..

Code:
SET oTable = Browser("Microsoft Security Bulletin").Page("Microsoft Security Bulletin").WebTable("Office Suite and Other")
    SET obj = oTable.ChildItem(2, 5, "Link", 0)
        obj.Click


You can take rowcount and randomize and use for loop...
Did you get the idea?


RE: How to click on hyperlink using QTP - atreya0908 - 03-11-2012

Hi,

Same problem i am facing in a Silverlight 4.0 application. Hyperlink existing in a grid but QTP unable to click on that after recording. Please suggest