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

Inherits:
StandardError
  • Object
show all
Defined in:
lib/utils/selenium_money_patch.rb

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ ServerError

Returns a new instance of ServerError.



6
7
8
9
10
11
12
13
# File 'lib/utils/selenium_money_patch.rb', line 6

def initialize(response)
  if response.is_a? String
    super(response)
  else
    $logger.error "Server response: #{response.inspect}"
    super("status code #{response.code}")
  end
end