# File lib/selenium/webdriver/remote/http/common.rb, line 13 def initialize @timeout = nil end
# File lib/selenium/webdriver/remote/http/common.rb, line 17 def call(verb, url, command_hash) url = server_url.merge(url) unless url.kind_of?(URI) headers = DEFAULT_HEADERS.dup if command_hash payload = command_hash.to_json headers["Content-Type"] = "#{CONTENT_TYPE}; charset=utf-8" headers["Content-Length"] = payload.bytesize.to_s if [:post, :put].include?(verb) if $DEBUG puts " >>> #{payload}" puts " > #{headers.inspect}" end elsif verb == :post headers["Content-Length"] = "0" end request verb, url, headers, payload end
# File lib/selenium/webdriver/remote/http/common.rb, line 47 def create_response(code, body, content_type) code, body, content_type = code.to_i, body.to_s.strip, content_type.to_s puts "<- #{body}\n" if $DEBUG if content_type.include? CONTENT_TYPE raise Error::WebDriverError, "empty body: #{content_type.inspect} (#{code})\n#{body}" if body.empty? Response.new(code, JSON.parse(body)) elsif code == 204 Response.new(code) else msg = "unexpected response, code=#{code}, content-type=#{content_type.inspect}" msg << "\n#{body}" unless body.empty? raise Error::WebDriverError, msg end end
# File lib/selenium/webdriver/remote/http/common.rb, line 43 def request(verb, url, headers, payload) raise NotImplementedError, "subclass responsibility" end
# File lib/selenium/webdriver/remote/http/common.rb, line 39 def server_url @server_url or raise Error::WebDriverError, "server_url not set" end