51Testing软件测试论坛
标题:
急:如何获得验证点返回的值为真
[打印本页]
作者:
xiao*
时间:
2006-10-18 20:11
标题:
急:如何获得验证点返回的值为真
录制一个验证点回放成功,我想判断,如果验证点为真则推出循环。该如何写?急!谢谢!
作者:
xiaonan
时间:
2006-10-19 09:11
if 加验证点的语句=true then
exit for
end if
作者:
xiao*
时间:
2006-10-19 09:33
标题:
谢谢回复
编译时总是提示,缺少“then”。可是我的确写了,我的代码如下:
If Browser("*").Page("*").WebElement("*").Check CheckPoint("*")=true then
Exit do
End If
作者:
xiaonan
时间:
2006-10-19 09:41
格式对对齐,把Exit do往后缩一点
作者:
xiao*
时间:
2006-10-19 09:55
标题:
还是不可以
还是不行啊:(
msn:fengyi_3@hotmail.com
作者:
yangkinki
时间:
2006-10-19 10:02
If Browser("*").Page("*").WebElement("*").Check (CheckPoint("*"))=true then
Exit do
End If
试试
作者:
seachild
时间:
2006-10-19 10:04
写成
If Browser("*").Page("*").WebElement("*").Check CheckPoint("*") then
Exit do
End If
或者
If (Browser("*").Page("*").WebElement("*").Check CheckPoint("*"))=True then
Exit do
End If
试试...
提示没有写then通常是因为 判断语句 里面 缺少了括号.....,有时候可能是因为少了一个,有时候是少了一对......
作者:
walker1020
时间:
2006-10-19 10:04
你在#3的第一行代码缺少了一个括号,改为下面的语句就可以了:
If Browser("*").Page("*").WebElement("*").Check(CheckPoint("*")) = true then
[
本帖最后由 walker1020 于 2006-10-19 10:06 编辑
]
作者:
xiao*
时间:
2006-10-19 10:17
标题:
调试成功!
谢谢
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2