Method: Frameworks::EnvHelper#new_mechanize

Defined in:
lib/frameworks/cucumber.rb

#new_mechanize(http_proxy = nil) ⇒ Object



131
132
133
134
135
136
# File 'lib/frameworks/cucumber.rb', line 131

def new_mechanize(http_proxy=nil)
  require 'mechanize'
  agent = Mechanize.new
  setup_mechanize(agent, http_proxy)
  agent
end