Method: Mechanize::ElementNotFoundError#initialize

Defined in:
lib/mechanize/element_not_found_error.rb

#initialize(source, element, conditions) ⇒ ElementNotFoundError

Returns a new instance of ElementNotFoundError.

[View source]

11
12
13
14
15
16
17
# File 'lib/mechanize/element_not_found_error.rb', line 11

def initialize source, element, conditions
  @source     = source
  @element    = element 
  @conditions = conditions

  super "Element #{element} with conditions #{conditions} was not found"
end