TA的每日心情 | 开心 2016-1-14 12:39 |
---|
签到天数: 1 天 连续签到: 1 天 [LV.1]测试小兵
|
我是新手,利用QTP9.5尝试做了下登录页面的自动化测试脚本编写。用的是描述性编程。
下面是测试脚本:
Browser("CreationTime:=0").Page("index:=0").WebEdit("name:=userId").Set "dwhsys"
Browser("CreationTime:=0").Page("index:=0").WebEdit("name:=password").SetSecure "4db4f03180601d17929826a900d33c6b876d"
Browser("CreationTime:=0").Page("index:=0").WebButton("text:=OK").Click
这是报错信息:
Cannot identify the object "[ WebButton ]" (of class WebButton). Verify that this object's properties match an object currently displayed in your application.
Line (3): "Browser("CreationTime:=0").Page("index:=0").WebButton("text:=OK").Click".
Tip: If the objects in your application have changed, the Maintenance Run Mode can
help you identify and update your steps and/or the objects in your repository.
OK按钮和登录名、密码在同一个页面,为什么提示找不到呢?我郁闷了好久 |
|