Exception: Watir::Exception::TimeOutException
- Inherits:
-
WatirException
- Object
- RuntimeError
- WatirException
- Watir::Exception::TimeOutException
- Defined in:
- lib/watir-classic/exceptions.rb
Overview
This exception is raised if a timeout is exceeded
Instance Attribute Summary collapse
-
#duration ⇒ Object
readonly
Returns the value of attribute duration.
-
#timeout ⇒ Object
readonly
Returns the value of attribute timeout.
Instance Method Summary collapse
-
#initialize(duration, timeout) ⇒ TimeOutException
constructor
A new instance of TimeOutException.
Constructor Details
#initialize(duration, timeout) ⇒ TimeOutException
Returns a new instance of TimeOutException.
39 40 41 |
# File 'lib/watir-classic/exceptions.rb', line 39 def initialize(duration, timeout) @duration, @timeout = duration, timeout end |
Instance Attribute Details
#duration ⇒ Object (readonly)
Returns the value of attribute duration.
42 43 44 |
# File 'lib/watir-classic/exceptions.rb', line 42 def duration @duration end |
#timeout ⇒ Object (readonly)
Returns the value of attribute timeout.
42 43 44 |
# File 'lib/watir-classic/exceptions.rb', line 42 def timeout @timeout end |