标题: 怎么突然出这个提示? [打印本页] 作者: zhufeirinui 时间: 2006-12-21 14:00 标题: 怎么突然出这个提示? The test run cannot continue due to an unrecoverable error.
Cannot find the 'WebEdit' object's parent "Login"(class Browser).Verify that parent
properties match an object currently displayed in your application.
还有一个问题,就是下面这语句,可以这样写不
Select Case a
Case 1 dim title(9)
titile(0)= Browser("Main").Page("Main_2").Link("申请单派发").Exist(4)
title(1)= Browser("Main").Page("Main_2").Link("申请单查询").Exist(4)
titile(2)= Browser("Main").Page("Main_2").Link("申请单跟踪").Exist(4)
For each titleitem in title
if(titleitem=false) then
result=false
end if
Next
End Select
我不知道Case中写多条语句要不要加其它的,还有我把boolean存在titile(9)中这样对不?
看了下vbscript帮助,又难找到,
呵,请各位大哥,大姐们指定下。作者: zhufeirinui 时间: 2006-12-21 14:31
这是错误提示
Cannot find the "WebEdit" object's parent "Main" (class Browser). Verify that parent properties match an object currently displayed in your application.
Line (11): "Browser("Main").Page("information:=1").WebEdit("name:=TextBox2","information:=1").Set "123456作者: hoyot 时间: 2006-12-22 10:34
提示是没有找到录制的对象,重新录制试试。
录制前先用object spy手动监测一下这个对象有没有被识别成正确的控件属性。