Mechanize, capybara and a http proxy

We had trouble at work today with getting mechanize – via the capybara-mechanize driver – to go over a http proxy. And thus this little snippet of code was born:

  proxy = URI.parse(ENV['http_proxy'])
  Capybara.current_session.driver.agent.set_proxy(proxy.host, proxy.port)

It worked for us.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s