Forum Discussion
programdoubts
13 years agoContributor
Hi Mike Gunnett,
thanks for your reply
Yes i have implemented like storing in array and accessing, its working fine,
but i have tried in this way, this way is working fine in other tools, thats y i have tried like this
if the below way is work then y we have to implement array way thats y i have tried in this way
any how thx for your replies till now
thanks to all the folks who have supported me :)
thanks for your reply
Yes i have implemented like storing in array and accessing, its working fine,
but i have tried in this way, this way is working fine in other tools, thats y i have tried like this
if the below way is work then y we have to implement array way thats y i have tried in this way
Function fun_Test
Dim page, links, linksCount, link, URL, i, panel
Dim PropArray, ValuesArray
URL = "http://www.domain.com"
Browsers.Item(btIExplorer).Run(URL)
Set page = Sys.Browser("*").Page("*")
Set panel = page.FindChild("idStr", "leftPanel", 14)
If panel.Exists then
PropArray = Array("ObjectType","visible")
ValuesArray = Array("Link","true")
links = panel.FindAllChildren(PropArray, ValuesArray, 9)
Log.Message("Total No. of links: "& UBound(links))
If UBound(links) > 0 Then
For i = 0 To UBound(links)
Log.Message(i &": "&links(i).Height)
links(i).click()
Next
End If
End if
End Function
any how thx for your replies till now
thanks to all the folks who have supported me :)
Related Content
Recent Discussions
- 11 minutes ago
- 6 days ago
- 10 days ago