如何在编码 UI 中的第二个 IE 实例中重播时识别控件
如何在编码 UI 中的第二个 IE 实例中重播时识别控件。
我已在第二个 IE 实例中记录了一些断言,但编码的 UI 在重播时并未将焦点传递给第二个 IE 实例。
该场景就像我的报告是在新窗口中生成的。我在其中添加了一些断言。它被正确保存。但是当我重播它时,编码的 UI 永远不会将其焦点转向第二个 IE,这就是我的测试失败的原因。
对此有任何帮助。
谢谢...
How to identify controls while replay in 2nd IE instance in coded UI.
I have recorded some assertions in a second IE instance, but coded UI is not passing the focus to the second IE instance while replay.
The scenario is like my report is generated in a new window. I have added some assertions to it. It gets saved properly. But when I replay it, coded UI never turns its focus on second IE, that is why my test fails.
Any help on this.
Thanks...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您实际上需要区分第一个和第二个 IE 窗口。
启动它们时,将它们的引用存储在某处,然后在查找控件时将这些实例作为父级传递。
用伪代码表示:
希望这能给您一个总体思路。
First you actually need to distinguish the first and the second IE windows.
When launching them, store references for them somewhere, and then pass these instances as parent when finding controls.
In pseudocode:
Hope this gives you general idea.