QTP中WebList对选项中指定的值进行点击操作
QTP中WebList对选项中指定的值进行点击操作如何实现,例如:51testing中发布日志页面,点击选项“+添加“弹出一个窗口这个功能
应该可以通过weblist本身的属性(id序号或是text)来定位。或是先把weblist遍历,再来操作 参见遍历代码,选择自己要的对象:
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 QTP中对象的常见属性和方法
多多研究下拉
页:
[1]