Hi Pavan
you need to use variable k in the object created to print all the webelements
Please find the below code
Thanks
-Tanya
you need to use variable k in the object created to print all the webelements
Please find the below code
Code:
Set element = description.Create
element("micclass").value = "WebElement"
element("html tag").value = "STRONG"
set contents = browser("name:=Journal of Applied and Natural Science").Page("title:=Journal of Applied and Natural Science").ChildObjects(element)
print contents.count
For k = 0 to contents.count-1
text = contents(k).getroproperty("innertext")
print text
NextThanks
-Tanya

