|
我们公司有一个系统,使用的代码选择框是在一个文本框中双击后,弹出一个小的代码选择页面,然后点击确定按钮选择代码。这样做主要是沿用老系统的处理方式,方便客户使用。但是我使用QTP录制脚本以后,相关代码变成了:
Browser("***系统").Page("**业务系统").Frame("fraInterface_2").WebEdit("Handler1Code").Click
Browser("***系统").Window("请选择 -- 网页对话框").Page("请选择").WebList("codeselect").Select "19850914--张强"
Browser("***系统").Page("**业务系统").Frame("fraInterface_2").WebEdit("Handler1Code").Set "19850914"
在回放的时候,出现了如下的错误:
file:///C:/DOCUME%7E1/KILLAN%7E1/LOCALS%7E1/Temp/moz-screenshot.jpgcannot find the "codeselect" object's parent "请选择 -- 网页对话框" (class window).Verify that parent properties match an object currently displayed in your application. |
|