51Testing软件测试论坛

标题: QTP中WebList对选项中指定的值进行点击操作 [打印本页]

作者: rjcaofangping    时间: 2015-7-30 15:55
标题: QTP中WebList对选项中指定的值进行点击操作
QTP中WebList对选项中指定的值进行点击操作如何实现,
例如:51testing中发布日志页面,点击选项“+添加“弹出一个窗口这个功能

作者: seagull1985    时间: 2015-7-31 08:45
应该可以通过weblist本身的属性(id序号或是text)来定位。  或是先把weblist遍历,再来操作
作者: jingzizx    时间: 2015-7-31 10:27
参见遍历代码,选择自己要的对象:
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
QTP中对象的常见属性和方法
多多研究下拉




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2