如何识别按钮提交是否在 watin 中打开了新的浏览器窗口或新选项卡

发布于 2024-12-07 01:11:08 字数 160 浏览 2 评论 0原文

我有同样的问题,每当我单击提交表单按钮时,我的网站都会打开一个新选项卡。 有什么方法可以检查我是否在 watin 中打开了新选项卡或新窗口

我已经尝试使用 ie.internetexplorers 来获取新网址,它在某些情况下有效,但在大多数情况下失败。

有人有更好的主意吗

I have the same problem, my site opens a new tab whenever I click on the submit form button.
Is there any way to check whether i have opened a new tab or new windows in watin

I have tried myself with ie.internetexplorers to get the new url, it worked in some cases but in most cases it failed.

does any one have any better idea

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

装迷糊 2024-12-14 01:11:08

Browser.AttachTo() 应该会找到新窗口:

 string expectedUrl = "http://mysite.com/expected-url/";

 using (var newWindow = Browser.AttachTo<IE>(
                  Find.ByTitle("Expected title")))
 {
       Assert.AreEqual(expectedUrl, newWindow.Url);
 }

Browser.AttachTo() should find you the new window:

 string expectedUrl = "http://mysite.com/expected-url/";

 using (var newWindow = Browser.AttachTo<IE>(
                  Find.ByTitle("Expected title")))
 {
       Assert.AreEqual(expectedUrl, newWindow.Url);
 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文