51Testing软件测试论坛

标题: 关于验证点的一个问题 [打印本页]

作者: lifangm    时间: 2006-1-6 09:58
标题: 关于验证点的一个问题
能否动态替换ListViewVP中的第三个参数?
如下代码:
...
for i = 1 to 6
...
    Window SetTestContext, "Caption=Client for Windows", ""
    Window SetTestContext, "Caption=Folder: <Search Results>;ChildWindow", ""
    Result = ListViewVP (CompareImage, "ObjectIndex=1", "VP=image1" )
    Window ResetTestContext, "", ""   
...
next
...

我的意图:
使用for循环来动态替换image1这个参数,比如为image2,image3等等,
这个用robot可以实现吗?
作者: ilovejolly    时间: 2006-1-6 10:34
这样的vp恐怕不能参数化
作者: chijj    时间: 2006-1-6 12:43
1、可以试试用数组实现
Dim i as Integer
Dim arr() As String
Redim arr(4)
arr(0)="image0"
arr(1)="image1"
arr(2)="image2"
arr(3)="image3"
arr(4)="image4"

for i = 0 to 4
...
    Result = ListViewVP (CompareImage, "ObjectIndex=1", "VP=" + strName )

Result = ListViewVP (CompareImage, "ObjectIndex=1", "VP=" + "+strName+" )
...
next

2、上面的方法是定义的数组,也可以不定义数组,试试这样写是否可以
Result = ListViewVP (CompareImage, "ObjectIndex=1", "VP=image" + i )
我现在没有环境,没有测试,仅供参考。

[ 本帖最后由 chijj 于 2006-1-6 13:08 编辑 ]
作者: ilovejolly    时间: 2006-1-6 13:42
vp是有相对应的物理文件的,你这样改了有什么用?
作者: baitest    时间: 2006-1-9 12:31
引用数据池!
作者: ilovejolly    时间: 2006-1-9 19:55
我觉得大家用一种方法之前,首先应该思考一下,思想比代码重要的多




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