class Selenium::WebDriver::Remote::Http::Curb

def client

def client
  @client ||= (
    c = Curl::Easy.new
    c.max_redirects   = MAX_REDIRECTS
    c.follow_location = true
    c.timeout         = @timeout if @timeout
    c.verbose         = WebDriver.logger.info?
    c
  )
end