ルビー学習ノート_watir
1371 ワード
エラー:
uninitialized constant Watir::IE (NameError)
ソリューション:
1. gem update --system
2. gem install watir
3. gem install win32-process
4. gem install watir-classic #現在64ビットのRubyはサポートされていませんので、インストールされているRubyは32ビットでなければ使用できません
1つ目はRubygemsのアップグレードで、2つ目はwatirのインストールです.この2つのプロセスはいずれもネットワークを通過しなければならない.
3.rbファイルでテストする:
----------------------------------------------------------------------------------------------------------------------------------------------------------
Based on the error, my guess is that watir-classic is failing to install the nokogiri gem. Nokogiri does not currently support Ruby x64 on Windows - see https://github.com/sparklemotion/nokogiri/issues/864. Two things you could try: 1. Use 32bit Ruby (as suggested in the Nokogiri issue) 2. Use a browser other than IE. By default, Browser.new will start IE using watir-classic. Using one of the other browsers will use watir-webdriver, which I do not believe is dependent on nokogiri. Example:
uninitialized constant Watir::IE (NameError)
ソリューション:
1. gem update --system
2. gem install watir
3. gem install win32-process
4. gem install watir-classic #現在64ビットのRubyはサポートされていませんので、インストールされているRubyは32ビットでなければ使用できません
1つ目はRubygemsのアップグレードで、2つ目はwatirのインストールです.この2つのプロセスはいずれもネットワークを通過しなければならない.
3.rbファイルでテストする:
require 'rubygems'
require 'watir'
require 'watir-classic'
ie = Watir::Browser.new
ie.goto("http://www.baidu.com")
ieが開かれるとOkになります.----------------------------------------------------------------------------------------------------------------------------------------------------------
Based on the error, my guess is that watir-classic is failing to install the nokogiri gem. Nokogiri does not currently support Ruby x64 on Windows - see https://github.com/sparklemotion/nokogiri/issues/864. Two things you could try: 1. Use 32bit Ruby (as suggested in the Nokogiri issue) 2. Use a browser other than IE. By default, Browser.new will start IE using watir-classic. Using one of the other browsers will use watir-webdriver, which I do not believe is dependent on nokogiri. Example:
require 'watir'
browser = Watir::Browser.new :chrome
browser.goto("http://www.google.com")