WATIN 和多选项卡 IE

发布于 2024-07-29 13:31:01 字数 483 浏览 9 评论 0原文

我有一个如下所示的 WATIN 测试:

[Test]
public void IE_should_launch_on_correct_url()
{
  // do something here that should launch IE
  ...
  _ie = IE.AttachToIE(Find.ByUrl(someUrl));
  ...
  Assert.IsNotNull(_ie);
}

[TearDown]
public void Tidy()
{ 
  _ie.Close();
}

如果打开了另一个 IE (7),则测试的第一行会在该 IE 上打开一个新选项卡,然后最后一行断言有一个打开了该 url 的 IE。 现在,当 Tidy 方法执行时,它会关闭 IE 中打开的第一个选项卡,而不是测试打开的选项卡。 我怎样才能避免这种情况? 有什么方法可以使用 WATIN 关闭任意选项卡吗?

提前致谢

I have a WATIN test like the following:

[Test]
public void IE_should_launch_on_correct_url()
{
  // do something here that should launch IE
  ...
  _ie = IE.AttachToIE(Find.ByUrl(someUrl));
  ...
  Assert.IsNotNull(_ie);
}

[TearDown]
public void Tidy()
{ 
  _ie.Close();
}

If there's another IE (7) opened, the first line of the test opens a new tab on that IE and then the last one asserts there's an IE with that url opened. Now, when the Tidy method executes, it closes the first tab opened in IE, not the one the test opened.
How can I avoid that? Is there any way I can close an arbitrary tab with WATIN?

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文