Chrome 浏览器使用 watir webdriver 打开和关闭
我有以下代码:
require "rubygems"
require "watir-webdriver"
browser = Watir::Browser.new(:chrome)
browser.goto "http://google.com"
当我运行此代码时,浏览器打开网站 google.com,然后自动关闭 为什么会自动关闭?我的chrome版本是12.0.742.68
I have the following code:
require "rubygems"
require "watir-webdriver"
browser = Watir::Browser.new(:chrome)
browser.goto "http://google.com"
When i run this code, the browser opens the site google.com and then closes automatically
Why does it close automatically? My chrome version is 12.0.742.68
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您的程序退出时,Chrome 驱动程序将关闭所有浏览器实例。这是一个已知问题,幸运的是它的优先级今天被提高了 -尽快寻找修复方法。
The Chrome driver will close all browser instances when your program exits. It's a known issue, and its priority was fortunately bumped today - look for a fix soon.