我大约一年没有使用 Watir 或 Watir-webdriver。我在我的计算机上安装了一个全新的 32x Windows 7 on image。接下来,我使用安装包版本 2.0.0-p0 安装了 Ruby。然后我将 ruby gem 更新到 2.0.3 版。之后,我安装了名为 DevKit-mingw64-32-4.7.2-20130224-1151-sfx 的 devkit,这就是网站所说的正确的。Devkit 安装正确。现在,当我使用命令行安装 Watir 时gem install watir
,出现错误。Watir 安装了一段时间,然后我得到了这些代码行。我按照代码建议访问了 nokogiri.org 网站。nokogiri 网站说安装只需使用 gem install nokogiri
,所以我做到了。然后我安装了 ffi 并且它起作用了。我会留下下面的代码,以防其他人有同样的问题。
(....)
Fetching: mini_portile-0.5.0.gem (100%)
Successfully installed mini_portile-0.5.0
Fetching: nokogiri-1.6.0.rc1.gem (100%)
Temporarily enhancing PATH to include DevKit...
Building native extensions. This could take a while...
ERROR: Error installing watir:
ERROR: Failed to build gem native extension.
C:/Ruby200/bin/ruby.exe extconf.rb
checking for libxml/parser.h... no
-----
libxml2 is missing. please visit http://nokogiri.org/tutorials/installing_nokog
iri.html for help with installing dependencies.
-----
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers. Check the mkmf.log file for more details. You may
need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=C:/Ruby200/bin/ruby
--with-zlib-dir
--without-zlib-dir
--with-zlib-include
--without-zlib-include=${zlib-dir}/include
--with-zlib-lib
--without-zlib-lib=${zlib-dir}/lib
--with-iconv-dir
--without-iconv-dir
--with-iconv-include
--without-iconv-include=${iconv-dir}/include
--with-iconv-lib
--without-iconv-lib=${iconv-dir}/lib
--with-xml2-dir
--without-xml2-dir
--with-xml2-include
--without-xml2-include=${xml2-dir}/include
--with-xml2-lib
--without-xml2-lib=${xml2-dir}/lib
--with-xslt-dir
--without-xslt-dir
--with-xslt-include
--without-xslt-include=${xslt-dir}/include
--with-xslt-lib
--without-xslt-lib=${xslt-dir}/lib
--with-libxslt-config
--without-libxslt-config
--with-pkg-config
--without-pkg-config
--with-libxml-2.0-config
--without-libxml-2.0-config
--with-pkg-config
--without-pkg-config
--with-libiconv-config
--without-libiconv-config
--with-pkg-config
--without-pkg-config
Gem files will remain installed in C:/Ruby200/lib/ruby/gems/2.0.0/gems/nokogiri-
1.6.0.rc1 for inspection.
Results logged to C:/Ruby200/lib/ruby/gems/2.0.0/gems/nokogiri-1.6.0.rc1/ext/nok
ogiri/gem_make.out
现在安装了watir。我运行了一些测试脚本以查看它是否正常工作。所以现在我想安装 Watir-webdriver。我使用了代码 'gem install watir-webdriver 和 gem 安装正确。然而,这是我遇到问题的时候。如果我从这里下载最新的 chrome 驱动程序并将其放入路径中的 ruby bin 中,我会收到此错误。
Microsoft Windows [版本 6.1.7601] 版权所有 (c) 2009 Microsoft Corporation。版权所有。
C:\Users\kai.knutson>irb DL is deprecated, please use Fiddle
irb(main):001:0> require "watir-webdriver"
=> true
irb(main):002:0> e = Watir::Browser.new :chrome Started ChromeDriver port=9515 version=0.8
log=C:\Users\kai.knutson\chromedriver.log
=> #<Watir::Browser:0x..fa558e0f6 url={"message"=>"no such session: url\n (Driv er
info: chromedriver=0.8,platform=Windows NT 6.1 SP1 x86)"} title={"message"=>" no such
session: title\n (Driver info: chromedriver=0.8,platform=Windows NT 6.1 SP1 x86)"}>
如果我尝试使用 Internet Explorer,它可以工作,但不正确,我无法点击链接,并且还有一些其他的小故障。我知道我运行的代码是有效的,因为它在使用 watir classic 或只是普通的 watir 时运行完美。所以我的问题是我怎样才能让 chrome 工作,我是否在安装中遗漏了一些会导致 watir webdriver 无法工作的东西。