class Selenium::WebDriver::Remote::Http::Default

def http

def http
  @http ||= begin
    http = new_http_client
    if server_url.scheme == 'https'
      http.use_ssl = true
      http.verify_mode = OpenSSL::SSL::VERIFY_NONE
    end
    http.open_timeout = open_timeout if open_timeout
    http.read_timeout = read_timeout if read_timeout
    start(http)
    http
  end
end