class Capybara::Apparition::BrowserError

Public Instance Methods

error_parameters() click to toggle source
# File lib/capybara/apparition/errors.rb, line 43
def error_parameters
  (response['args'] || []).join("\n")
end
message() click to toggle source
# File lib/capybara/apparition/errors.rb, line 47
def message
  'There was an error inside Apparition. ' \
    'If this is the error returned, and not the cause of a more detailed error response, ' \
    'this is probably a bug, so please report it. ' \
    "\n\n#{name}: #{error_parameters}"
end
name() click to toggle source
# File lib/capybara/apparition/errors.rb, line 39
def name
  response['name']
end