Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Links: Find, Save to Table, then Use
#1
Not Solved
I am updating my issue...
I added anotherf scredenshot to show that the DocType changes. Somehow, I thus need to find these links, save to a table, then use the each DocType plus check each View Zip and Fax. But finding the DocType I guess the remaing links would be similar?

On the attachment, I have a web page that I need to determine all of the link names and how many of each they are, store the links in a table or buffer, then have my code go through using each link one at a time. (I need to read and use all of the Blue links on the attached page.)

IE... I need to find, save to a table, then use/select each RIG404, each View, each Zip and each Fax link one at a time. Depending on which link is used, I would run the tests for the specific link.

So...
How can I grab each link, place it in a table, then reuse each link in my script to call it? There could be 1-20… Plus rows, thus 4-80 calls.

So far I have:
Code:
Set ObjWebTable = Description.Create
ObjWebTable("class").Value = "4-column-table"
ObjWebTable("innertext").Value = ".*AllAccount No.*"

Set TableCollection = Browser(Wisdom).Page(Wisdom_Env).ChildObjects(ObjWebTable)
intTableCount = TableCollection.Count

ObjLinkRowsFound = 0

For i = 1 to intTableCountRows
For j = 0 to 4 ' (intTableCountCols)

Set ObjLink = TableCollection(i).ChildItem(i, j, "Link", 0) ' You have to check this number & change the Col number, if needed.
If ObjLink.GetROProperty("class") = "RIG404" Then
ObjLinkRowsFound = 1
Exit For
End If
Next
Next

If ObjLinkFoundRows = 1 Then
  ObjLink.Click
  Else
  'Report Something
  Messagebox = "No Reports Found"
  Exit
End If

see my attachment

thx for looking ;-)


Attached Files
.pdf   Find Save Select each Link.pdf (Size: 157.7 KB / Downloads: 60)
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Save or Save As not working for QTP 11 Nick 1 3,074 08-13-2011, 12:16 PM
Last Post: vaddevinod
  one column of table rows has links - want to access them - any ideas? sepgs2004 2 3,218 03-04-2009, 10:31 PM
Last Post: sepgs2004

Forum Jump:


Users browsing this thread: 1 Guest(s)