Sha256: ed4b45c1273ca04d53db9bbf51c9d788a8446fff362c702ed9907164039e688f
Contents?: true
Size: 434 Bytes
Versions: 17
Compression:
Stored size: 434 Bytes
Contents
# frozen_string_literal: true ## # Raised when an an element was not found on the Page class Mechanize::ElementNotFoundError < Mechanize::Error attr_reader :source attr_reader :element attr_reader :conditions def initialize source, element, conditions @source = source @element = element @conditions = conditions super "Element #{element} with conditions #{conditions} was not found" end end
Version data entries
17 entries across 17 versions & 1 rubygems