Module: Watir::EventuallyPresent
Overview
Convenience methods for things that eventually become present.
Includers should implement a public #present? and a (possibly private) #selector_string method.
Instance Method Summary collapse
-
#wait_until_present(timeout = nil) ⇒ Object
Waits until the element is present.
-
#wait_while_present(timeout = nil) ⇒ Object
Waits while the element is present.
-
#when_enabled(timeout = nil) ⇒ Object
Waits until the element is enabled.
-
#when_present(timeout = nil) ⇒ Object
Waits until the element is present.
Instance Method Details
#wait_until_present(timeout = nil) ⇒ Object
Waits until the element is present.
223 224 225 226 227 |
# File 'lib/watir-webdriver/wait.rb', line 223 def wait_until_present(timeout = nil) timeout ||= Watir.default_timeout = "waiting for #{selector_string} to become present" Watir::Wait.until(timeout, ) { present? } end |
#wait_while_present(timeout = nil) ⇒ Object
Waits while the element is present.
241 242 243 244 245 246 247 |
# File 'lib/watir-webdriver/wait.rb', line 241 def wait_while_present(timeout = nil) timeout ||= Watir.default_timeout = "waiting for #{selector_string} to disappear" Watir::Wait.while(timeout, ) { present? } rescue Selenium::WebDriver::Error::StaleElementReferenceError # it's not present end |
#when_enabled(timeout = nil) ⇒ Object
Waits until the element is enabled.
199 200 201 202 203 204 205 206 207 208 209 |
# File 'lib/watir-webdriver/wait.rb', line 199 def when_enabled(timeout = nil) timeout ||= Watir.default_timeout = "waiting for #{selector_string} to become enabled" if block_given? Watir::Wait.until(timeout, ) { enabled? } yield self else WhenEnabledDecorator.new(self, timeout, ) end end |
#when_present(timeout = nil) ⇒ Object
Waits until the element is present.
175 176 177 178 179 180 181 182 183 184 185 |
# File 'lib/watir-webdriver/wait.rb', line 175 def when_present(timeout = nil) timeout ||= Watir.default_timeout = "waiting for #{selector_string} to become present" if block_given? Watir::Wait.until(timeout, ) { present? } yield self else WhenPresentDecorator.new(self, timeout, ) end end |