Sha256: 7f746ddce15bfe3e6350daea05c6aab04b45c897d0c66bbfcb9593b9d063685e
Contents?: true
Size: 587 Bytes
Versions: 1
Compression:
Stored size: 587 Bytes
Contents
# encoding: utf-8 module Watir module Exception class Error < StandardError; end # TODO: rename Object -> Element? class UnknownObjectException < Error; end class ObjectDisabledException < Error; end class ObjectReadOnlyException < Error; end class NoValueFoundException < Error; end class MissingWayOfFindingObjectException < Error; end class UnknownCellException < Error; end class NoMatchingWindowFoundException < Error; end class UnknownFrameException < Error; end class UnknownRowException < Error; end end # Exception end # Watir
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
watir-webdriver-0.7.0 | lib/watir-webdriver/exception.rb |