有没有办法使用 watir-webdriver 每次点击 Chrome 上的链接时不打开新窗口

发布于 2024-11-01 14:33:55 字数 1165 浏览 2 评论 0原文

我正在尝试使用 Google Chrome 来自动测试用 JavaScript 为 iPhone 开发的移动应用程序,由于它是基于 Webkit 的,所以只有 Safari 和 Google Chrome 可以呈现内容,所以我没有其他选择,只能使用 watir-webdriver。

我做了很多研究,试图找到一种在 Google Chrome 上实现自动化的解决方案,而我能得到的最接近的是 Watir-WebDriver。

我有以下代码:

require "rubygems"
require "watir-webdriver"
browser = Watir::Browser.new(:chrome)

website = "http://xxx.yyy.zzz"
browser.goto(website)
browser.link(:xpath,"/html/body/div/ul/li/a").click   #step1
browser.link(:xpath,"/html/body/div/div[2]/div/ul/li//*[@id=btn_WEBURL]").click     #step2

一旦执行#step1,内容就会在新的浏览器窗口中打开,这会导致:

C:/Program Files/Ruby187/lib/ruby/gems/1.8/gems/watir-webdriver-0.2.2/lib/watir-
webdriver/elements/element.rb:241:in `assert_exists': unable to locate element,
using {:xpath=>"/html/body/div/div[2]/div/ul/li//*[@id=btn_WEBURL]", :tag_name=>
"a"} (Watir::Exception::UnknownObjectException)
        from C:/Program Files/Ruby187/lib/ruby/gems/1.8/gems/watir-webdriver-0.2
.2/lib/watir-webdriver/elements/element.rb:69:in `click'
        from ft.rb:13

有没有办法在每次单击 Chrome 上的链接时不打开新窗口,使用watir-webdriver。或者任何其他解决我的问题的方法。

谢谢

I am trying to using Google Chrome to automate my testing of a mobile app developed in JavaScript for iPhone, and since it is Webkit based only Safari and Google Chrome can render the content, so I have no other option then to use watir-webdriver.

I have done a lot of research in trying to find a solution to automate on Google Chrome and the closest I could get is with Watir-WebDriver.

I have the following code:

require "rubygems"
require "watir-webdriver"
browser = Watir::Browser.new(:chrome)

website = "http://xxx.yyy.zzz"
browser.goto(website)
browser.link(:xpath,"/html/body/div/ul/li/a").click   #step1
browser.link(:xpath,"/html/body/div/div[2]/div/ul/li//*[@id=btn_WEBURL]").click     #step2

As soon as the #step1 is executed, the content is opened in a new browser window, which results in:

C:/Program Files/Ruby187/lib/ruby/gems/1.8/gems/watir-webdriver-0.2.2/lib/watir-
webdriver/elements/element.rb:241:in `assert_exists': unable to locate element,
using {:xpath=>"/html/body/div/div[2]/div/ul/li//*[@id=btn_WEBURL]", :tag_name=>
"a"} (Watir::Exception::UnknownObjectException)
        from C:/Program Files/Ruby187/lib/ruby/gems/1.8/gems/watir-webdriver-0.2
.2/lib/watir-webdriver/elements/element.rb:69:in `click'
        from ft.rb:13

Is there a way to NOT open a new window every time I click on a link on Chrome, using watir-webdriver. Or any other solution to my problem.

Thanks

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

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

发布评论

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

评论(1

无所的.畏惧 2024-11-08 14:33:55

您可以找到并使用另一个窗口:

browser.window(:title => "your popup window").use do  
  browser.button(:id => "close").click
end

查看更多示例:https://github。 com/jarib/watirspec/blob/watir2/window_switching_spec.rb

You can locate and use the other window:

browser.window(:title => "your popup window").use do  
  browser.button(:id => "close").click
end

see more examples: https://github.com/jarib/watirspec/blob/watir2/window_switching_spec.rb

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文