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.
171 172 173 174 175 |
# File 'lib/watir-webdriver/wait.rb', line 171 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.
189 190 191 192 193 194 195 |
# File 'lib/watir-webdriver/wait.rb', line 189 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.
147 148 149 150 151 152 153 154 155 156 157 |
# File 'lib/watir-webdriver/wait.rb', line 147 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 |