QTP的那些事--weblist中相关的内容获取

本文介绍在Quick Test Professional (QTP)中验证Web页面列表内容的两种方法。第一种方法通过获取Web列表的所有项并将其存储在数组中进行比较。第二种方法遍历列表项,检查预期项是否存在,并选择该选项。
摘要由CSDN通过智能技术生成

参考链接地址:http://www.learnqtp.com/forums/Thread-Verifying-the-contents-of-a-Web-List-in-QTP-scipt

 

有两种方法:

listval = browser("name").Page("name).WebList("name").GetROProperty("all items")
listvalues = split(listval,";") ' u ll get all weblist values in listvalues array.
use this aray and check whether ur item is thr in the list or not
Correct if m wrong. even i am new to QTP.

 

第二种方法:

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

转载于:https://www.cnblogs.com/alterhu/archive/2012/06/08/2541661.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值