2

我在我的 Windows 7 机器上安装了 JRuby 1.6.7.2(64 位)和 JDK 1.7.x(64 位)。现在,我只是尝试使用 Watir 启动浏览器(Firefox 13.0),但我不断收到一个似乎来自 JRuby + gems 内部的 HTTP 错误。我已经使用以下命令安装了 gem:

jgem install watir-webdriver
jgem install rspec
jgem install capybara
jgem install page-object
jgem install bundler
jgem install jruby-jars

这是我尝试使用 Watir 打开浏览器时遇到的堆栈跟踪错误:

C:\Windows\System32>jirb
irb(main):001:0> require 'rubygems'
=> true
irb(main):002:0> require 'watir-webdriver'
=> true
irb(main):003:0> b = Watir::Browser.start("http://www.google.com", :firefox)
[WARNING] MultiJson is using the default adapter (ok_json). We recommend loading
a different JSON library to improve performance.
ArgumentError: HTTP request path is empty
    from C:/Ruby/jruby-1.6.7.2/lib/ruby/1.8/net/http.rb:1476:in `initialize'

    from C:/Ruby/jruby-1.6.7.2/lib/ruby/1.8/net/http.rb:1594:in `initialize'

    from C:/Ruby/jruby-1.6.7.2/lib/ruby/gems/1.8/gems/selenium-webdriver-2.2
    2.2/lib/selenium/webdriver/remote/http/default.rb:64:in `new_request_for'

    from C:/Ruby/jruby-1.6.7.2/lib/ruby/gems/1.8/gems/selenium-webdriver-2.2 
    2.2/lib/selenium/webdriver/remote/http/default.rb:34:in `request'

    from C:/Ruby/jruby-1.6.7.2/lib/ruby/gems/1.8/gems/selenium-webdriver-2.2
    2.2/lib/selenium/webdriver/remote/http/default.rb:57:in `request'

    from C:/Ruby/jruby-1.6.7.2/lib/ruby/gems/1.8/gems/selenium-webdriver-2.2
    2.2/lib/selenium/webdriver/remote/http/common.rb:40:in `call'

    from C:/Ruby/jruby-1.6.7.2/lib/ruby/gems/1.8/gems/selenium-webdriver-2.2
    2.2/lib/selenium/webdriver/remote/bridge.rb:598:in `raw_execute'

    from C:/Ruby/jruby-1.6.7.2/lib/ruby/gems/1.8/gems/selenium-webdriver-2.2
    2.2/lib/selenium/webdriver/remote/bridge.rb:92:in `create_session'

    from C:/Ruby/jruby-1.6.7.2/lib/ruby/gems/1.8/gems/selenium-webdriver-2.2
    2.2/lib/selenium/webdriver/remote/bridge.rb:68:in `initialize'

    from C:/Ruby/jruby-1.6.7.2/lib/ruby/gems/1.8/gems/selenium-webdriver-2.2
    2.2/lib/selenium/webdriver/firefox/bridge.rb:28:in `initialize'

    from C:/Ruby/jruby-1.6.7.2/lib/ruby/gems/1.8/gems/selenium-webdriver-2.2
    2.2/lib/selenium/webdriver/common/driver.rb:31:in `for'

    from C:/Ruby/jruby-1.6.7.2/lib/ruby/gems/1.8/gems/selenium-webdriver-2.2
    2.2/lib/selenium/webdriver.rb:65:in `for'

    from C:/Ruby/jruby-1.6.7.2/lib/ruby/gems/1.8/gems/watir-webdriver-0.6.1/
    lib/watir-webdriver/browser.rb:35:in `initialize'

    from C:/Ruby/jruby-1.6.7.2/lib/ruby/gems/1.8/gems/watir-webdriver-0.6.1/
    lib/watir-webdriver/browser.rb:18:in `start'

    from (irb):3:in `evaluate'
    from org/jruby/RubyKernel.java:1083:in `eval'
    from C:/Ruby/jruby-1.6.7.2/lib/ruby/1.8/irb.rb:158:in `eval_input'
    from C:/Ruby/jruby-1.6.7.2/lib/ruby/1.8/irb.rb:271:in `signal_status'
    from C:/Ruby/jruby-1.6.7.2/lib/ruby/1.8/irb.rb:155:in `eval_input'
    from org/jruby/RubyKernel.java:1410:in `loop'
    from org/jruby/RubyKernel.java:1183:in `catch'
    from C:/Ruby/jruby-1.6.7.2/lib/ruby/1.8/irb.rb:154:in `eval_input'
    from C:/Ruby/jruby-1.6.7.2/lib/ruby/1.8/irb.rb:71:in `start'
    from org/jruby/RubyKernel.java:1183:in `catch'
    from C:/Ruby/jruby-1.6.7.2/lib/ruby/1.8/irb.rb:70:in `start'
    from C:\Ruby\jruby-1.6.7.2\bin\jirb:13:in `(root)'irb(main):004:0>

我已将 selenium webdrivers ie & chrome 添加到我的类路径中。当我使用 ie 或 chrome 执行此命令时,我收到类似的 HTTP 错误。这是我必须手动对 gem 文件进行的修复吗?

4

1 回答 1

3

我对 Watir-webdriver gem 有同样的错误。问题是 http 代理设置,解决方案是在代码之前添加 no_proxy 环境。

ENV['no_proxy'] = "127.0.0.1"

我希望这可以帮助你!

于 2012-09-24T08:48:32.853 回答