Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
JavaTree
#3
Solved: 11 Years, 4 Months, 4 Weeks ago
hi perplexed, ok, so I will try to help with some ideas Smile
I think you should use a counter for that, I've used in next way:
Code:
' get the row's count from the dropdown method
Dim Counter
Counter = obj_DropDown.GetROProperty("items count")
MsgBox "There are '" & Counter & "' items under the dropdown!", 0, "Counter Results!!!

where obj_DropDown was described before to use it (I think you know how to do that?!):
Code:
Set obj_DropDown = Browser("URL:=" & Environment.Value("baseUrl")).Page("URL:=" & Environment.Value("baseUrl")).WebList ("select type:=ComboBox Select", "name:=" & obj_Name)

In my sample the URL is got from an XML file(it's the application's URL, you can insert it directly into the code, and the obj_Name is the name of your dropdown, for e.g.:
Code:
' get the row's count from the dropdown
Dim Counter
Set obj_DropDown = Browser("URL:=http://learnqtp.com/.*").Page("URL:=http://learnqtp.com/.*").WebList ("select type:=ComboBox Select", "name:=" & selectCountryDropDown)
Counter = obj_DropDown.GetROProperty("items count")
MsgBox "There are '" & Counter & "' items under the dropdown!", 0, "Counter Results!!!"

P.S. and now play with IF statements to count the under subtree elements and to select the one you want (and to get the sub tree elements from it). Maybe you'll need a second counter for the elements under subtrees?!

Hope that will help you! Wink
Reply


Messages In This Thread
JavaTree - by perplexed - 05-20-2011, 08:02 PM
RE: JavaTree - by perplexed - 05-25-2011, 10:56 AM
RE: JavaTree - by lotos - 05-25-2011, 07:49 PM
RE: JavaTree - by perplexed - 05-31-2011, 08:09 PM
RE: JavaTree - by lotos - 06-01-2011, 12:38 PM
RE: JavaTree - by Pindaruk1 - 06-20-2011, 01:59 PM
RE: JavaTree - by lotos - 06-20-2011, 04:30 PM
RE: JavaTree - by Pindaruk1 - 06-22-2011, 04:08 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to access name of a node in a javatree in UFT ? saniya 0 1,808 07-25-2018, 06:00 PM
Last Post: saniya
  Javatree Problem Omkar87 2 4,979 03-02-2012, 03:09 PM
Last Post: sshukla12
Question JavaTree - Not able to click final links scsvel 1 3,035 01-30-2012, 03:34 PM
Last Post: scsvel

Forum Jump:


Users browsing this thread: 2 Guest(s)