lib/selenium/client/protocol.rb in selenium-client-1.2.14 vs lib/selenium/client/protocol.rb in selenium-client-1.2.15
- old
+ new
@@ -84,10 +84,10 @@
# puts "Requesting ---> #{data.inspect}"
http = Net::HTTP.new(@host, @port)
http.open_timeout = default_timeout_in_seconds
http.read_timeout = default_timeout_in_seconds
response = http.post('/selenium-server/driver/', data, HTTP_HEADERS)
- # puts "RESULT: #{response.inspect}\n"
+ # puts "RESULT: #{response.body.inspect}\n"
[ response.body[0..1], response.body[3..-1] ]
end
end