参见遍历代码,选择自己要的对象:
xpected_Item="ABC"
Items_count=Browser("....").Page(".....").WebList("select").GetROProperty("Items Count")
For i=1 to Items_count
Current_Item=Browser("....").Page(".....").WebList("select").GetItem(i)
msgbox Current_Item
If Current_Item=Expected_Item Then
msgbox "expected item exists in WebList"
Browser("....").Page(".....").WebList("select").Select Expected_Item
Exit for
End If
Next