![]() |
Search WebTable? - 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: Search WebTable? (/Thread-Search-WebTable) Pages:
1
2
|
RE: Search WebTable? - surya_7mar - 07-06-2010 Code: row = Browser("").Page("").WebTable("").GetRowWithCellText("GD APRS Nine,Internet,Jun 18 2010 4:57PM", 2, 7) Try this? RE: Search WebTable? - sasmitakumari - 07-13-2010 Hi, Can u provide snap shot of your webtable(part of it- with all columns in it with few rows"), which will help me to provide you sample code how to click on the link using DP? Sasmita RE: Search WebTable? - Brian T. - 07-14-2010 Thanks, For all the help! I was able to use the below code to search a web table for a specific Name(Andrew APRS Fox) and a specific Access Type(Internet)for the current date and once found click on the link in the 7th column for that specific request. Here is the code in case someone else has a simular issue. Again Thanks for all the Help! Code: Dim objTable, intRow Brian RE: Search WebTable? - Arun Prakash - 07-19-2010 Hi Brian, Code: row = Browser("").Page("").WebTable("").GetRowWithCellText("GD APRS Nine,Internet,Jun 18 2010 4:57PM") I hope the above code will solve your problem |