博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
QTP的那些事--weblist中相关的内容获取
阅读量:6819 次
发布时间:2019-06-26

本文共 682 字,大约阅读时间需要 2 分钟。

参考链接地址:

 

有两种方法:

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

转载地址:http://jaszl.baihongyu.com/

你可能感兴趣的文章