Exception: Selenium::WebDriver::Error::ServerError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/selenium/webdriver/remote/server_error.rb

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ ServerError

Returns a new instance of ServerError.



6
7
8
9
10
11
12
# File 'lib/selenium/webdriver/remote/server_error.rb', line 6

def initialize(response)
  if response.kind_of? String
    super(response)
  else
    super("status code #{response.code}")
  end
end