是否可以使用带有capybara的HTTP代理?

时间:2011-03-10 21:53:32

标签: capybara

Capybara的API似乎不支持配置HTTP代理。有没有办法使用它?

上下文:我正在使用带黄瓜的水豚来测试rails应用程序,并使用akephalos作为javascript驱动程序。页面上有一个script标记,用于向外部网站发出请求(在本例中为maps.google.com)。黄瓜测试失败,并显示以下消息:

org.apache.http.conn.HttpHostConnectException: Connection to http://maps.google.com refused (NativeException)
(drbunix:///tmp/akephalos.24700.sock) -e:1
./features/step_definitions/named_element_steps.rb:20

1 个答案:

答案 0 :(得分:5)

我不知道Akephalos,但Selenium / Firefox肯定有可能:

  Capybara.register_driver :selenium do |app|
    profile = Selenium::WebDriver::Firefox::Profile.new

    profile["network.proxy.type"] = 1 # manual proxy config
    profile["network.proxy.http"] = "http://example.com"
    profile["network.proxy.http_port"] = 80

    Capybara::Selenium::Driver.new(app, :profile => profile)
  end