rjcaofangping 发表于 2015-7-30 15:55:48

QTP中WebList对选项中指定的值进行点击操作

QTP中WebList对选项中指定的值进行点击操作如何实现,
例如:51testing中发布日志页面,点击选项“+添加“弹出一个窗口这个功能

seagull1985 发表于 2015-7-31 08:45:34

应该可以通过weblist本身的属性(id序号或是text)来定位。或是先把weblist遍历,再来操作

jingzizx 发表于 2015-7-31 10:27:38

参见遍历代码,选择自己要的对象:
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

fangty 发表于 2015-7-31 10:36:11

QTP中对象的常见属性和方法
多多研究下拉
页: [1]
查看完整版本: QTP中WebList对选项中指定的值进行点击操作