10-28-2009, 10:08 AM
(This post was last modified: 10-28-2009, 10:19 AM by venkatbatchu.)
Hi All,
Thanks for all your respoonse,
I have find the solution and implemented in my code,
Thanks basanth for your valuable suggestion....
Forgot to paste the code here,
Thanks for all your respoonse,
I have find the solution and implemented in my code,
Thanks basanth for your valuable suggestion....
Forgot to paste the code here,
Code:
Sub ChildObjects_Example()
Set oDesc = Description.Create()
oDesc("html tag").Value = "A"
Set EditCollection = Browser("xxxx").Page("xxxxx").Frame("xxxx").WebTable("Category").ChildObjects(oDesc)
NumberOfEdits = EditCollection.Count
msgbox NumberOfEdits
'Search for a specific link object and fetch its value
For i = 0 To NumberOfEdits -1
If EditCollection(i).GetROProperty("html tag") = "A" Then
p= EditCollection(i).GetRoProperty("name")
msgbox p
End If
Next
End Sub
Call ChildObjects_Example()