Method: Selenium::WebDriver::Logger#error

Defined in:
lib/selenium/webdriver/common/logger.rb

#error(message, id: []) { ... } ⇒ Object

Used to supply information that suggests an error occurred

Parameters:

  • message (String)
  • id (Symbol, Array<Symbol>) (defaults to: [])

Yields:

  • see #deprecate

[View source]

140
141
142
# File 'lib/selenium/webdriver/common/logger.rb', line 140

def error(message, id: [], &block)
  discard_or_log(:error, message, id, &block)
end