# File lib/selenium/client/protocol.rb, line 10 10: def remote_control_command(verb, args=[]) 11: timeout(@default_timeout_in_seconds) do 12: status, response = http_post(http_request_for(verb, args)) 13: raise Selenium::CommandError, response unless status == "OK" 14: response[3..-1] # strip "OK," from response 15: end 16: end