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_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.
170 171 172 173 174 |
# File 'lib/watir-webdriver/wait.rb', line 170 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.
188 189 190 191 192 193 194 |
# File 'lib/watir-webdriver/wait.rb', line 188 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_present(timeout = nil) ⇒ Object
Waits until the element is present.
146 147 148 149 150 151 152 153 154 155 156 |
# File 'lib/watir-webdriver/wait.rb', line 146 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 |