How can we calculate the options in the drop-down list? For example - How can we calculate the options drop-down list in Flight Reservation application.(like London, Denver, Frankfurt, Paris)
How can we calculate the options in the drop-down list? For example - How can we calculate the options drop-down list in Flight Reservation application.(like London, Denver, Frankfurt, Paris)
hi friend,
Try the below
Count1=Browser("micclass:=Browser").Page("micclass:=Page").WebList("name:=weblist",
"html tag:=SELECT").GetRoProperty("All Items")
Msgbox Count1
Thanks,
Deepa
Arise Awake And Stop Not Till The Goal Is Reached
Hi,
DDListCnt = Browser("micclass:=Browser").Page("micclass:=Page").WebList("("name:=weblist", "html tag:=SELECT").GetROProperty("items count")
MsgBox DDListCnt
Thanks,
Aruna