|
本帖最后由 xufang1122 于 2012-5-24 15:53 编辑
用QTP 录制BAIDU的首页是脚本是可以运行的,但是之后改了一下脚本,发现对象不可以识别啦,采用maintenance run 脚本可以运行。但是发现OR 里面的对象除了creation time 不一样,其他的都一样。不知道论坛里面有人遇到过这样的问题没有。能否告知是什么原因。谢谢
- SystemUtil.CloseProcessByName"iexplore.exe"
- SystemUtil.Run "iexplore", "http://www.baidu.com"
- Browser("百度一下,你就知道").Page("百度一下,你就知道").Sync
- wait 2
- 'Updated by test maintenance run
- 'Set objNews =Browser("百度一下,你就知道").Page("百度一下,你就知道").Link("新 闻").Object
- Set objNews =Browser("百度一下,你就知道_2").Page("百度一下,你就知道").Link("新 闻").Object
- 'Updated by test maintenance run
- 'Set objPage =Browser("百度一下,你就知道").Page("百度一下,你就知道").WebElement("网 页").Object
- 'Updated by test maintenance run
- Set objPage =Browser("百度一下,你就知道_2").Page("百度一下,你就知道").WebElement("网 页").Object
- Dim colorNews
- colorNews = objNews.currentStyle.color
- Msgbox colorNews
- colorPage = objPage.currentStyle.color
- Msgbox colorPage
- Browser("百度一下,你就知道").CloseAllTabs
复制代码 |
|