水豚是否可以使用 HTTP 代理?

发布于 2024-10-21 15:20:33 字数 444 浏览 0 评论 0原文

Capybara的API似乎不支持配置HTTP代理。有什么方法可以与它一起使用吗?

上下文:我使用 capybara 和 cucumber 来测试 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

Capybara's API doesn't seem to support configuring an HTTP proxy. Is there any way to use one with it?

Context: I'm using capybara with cucumber to test a rails application, and akephalos as the javascript driver. There's a script tag on the page that makes a request to an external site (in this case, maps.google.com). The cucumber test fails with the following message:

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

生生漫 2024-10-28 15:20:34

我不知道 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

I don't know about Akephalos, but it is certainly possible with 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
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文