class Mechanize::ElementNotFoundError
Raised when an an element was not found on the Page
Attributes
Public Class Methods
Source
# 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
Calls superclass method