|
模拟场景为:在一台客户端上不停打开IE加载同一页面。
现在遇到的问题:当打开1个IE加载完页面后(该IE保留),再打开IE后QTP无法识别,通过object repository中反馈the test object description is not unique.随后在object identification中对于browser控件属性进行改造,也替换了ordinal identifier中的index,location,greation time,似乎也不能解决该问题。也尝试过visual basic控件进行录制等也无解。
在网上看了一篇《QTP测试多个浏览器窗口的解决方案》:
SystemUtil.Run "iexplore.exe", "http://newtours.demoaut.com", "", "", 3 : Wait(4)BrowserObject.AddUsingTitle "DemoAUT", ".*Mercury Tours.*"
SystemUtil.Run "iexplore.exe", "http://blog.csdn.net/testing_is_believing", "", "", 3 : Wait(4)
BrowserObject.AddUsingTitle "MyBlog", "实用性测试(Pragmatistic Testing) - CSDN博客"
With BrowserObject.Name("DemoAUT") .........
With BrowserObject.Name("MyBlog") ...........
粗看了一下似乎是记录窗体的不同属性值来进行判断操作,但对于我打开相同的页面似乎不适用。
望各位高手不惜赐教,万分感谢。 |
|