08-13-2013, 08:14 AM
(This post was last modified: 08-13-2013, 08:14 AM by excellentpawan.)
click on this link http://ansfoundation.org/Journals/Volume3Issue1
I am using following code to extract text
Please help me
I am using following code to extract text
Code:
[Set element = description.Create
element("micclass").value = "WebElement"
element("html tag").value = "STRONG"
set contents = browser("title:=.*").Page("title:=.*").ChildObjects(element)
print contents.count
For k = 0 to contents.count-1
text = browser("title:=.*").Page("title:=.*").GetROProperty("innertext")
print text
Next
]