Class: Watir::Alert
- Inherits:
-
Object
- Object
- Watir::Alert
- Includes:
- EventuallyPresent
- Defined in:
- lib/watir-webdriver/alert.rb
Instance Method Summary collapse
-
#close ⇒ Object
Closes alert or cancels prompts/confirms.
-
#exists? ⇒ Boolean
(also: #present?)
Returns true if alert, confirm or prompt is present and false otherwise.
-
#initialize(target_locator) ⇒ Alert
constructor
A new instance of Alert.
-
#ok ⇒ Object
Closes alert or accepts prompts/confirms.
- #selector_string ⇒ Object private
-
#set(value) ⇒ Object
Enters text to prompt.
-
#text ⇒ String
Returns text of alert.
Methods included from EventuallyPresent
#wait_until_present, #wait_while_present, #when_present
Constructor Details
#initialize(target_locator) ⇒ Alert
Returns a new instance of Alert.
7 8 9 10 |
# File 'lib/watir-webdriver/alert.rb', line 7 def initialize(target_locator) @target_locator = target_locator @alert = nil end |
Instance Method Details
#close ⇒ Object
Closes alert or cancels prompts/confirms.
50 51 52 53 |
# File 'lib/watir-webdriver/alert.rb', line 50 def close assert_exists @alert.dismiss end |
#exists? ⇒ Boolean Also known as: present?
Returns true if alert, confirm or prompt is present and false otherwise.
78 79 80 81 82 83 |
# File 'lib/watir-webdriver/alert.rb', line 78 def exists? assert_exists true rescue Exception::UnknownObjectException false end |
#ok ⇒ Object
Closes alert or accepts prompts/confirms.
36 37 38 39 |
# File 'lib/watir-webdriver/alert.rb', line 36 def ok assert_exists @alert.accept end |
#selector_string ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
90 91 92 |
# File 'lib/watir-webdriver/alert.rb', line 90 def selector_string 'alert' end |
#set(value) ⇒ Object
Enters text to prompt.
65 66 67 68 |
# File 'lib/watir-webdriver/alert.rb', line 65 def set(value) assert_exists @alert.send_keys(value) end |
#text ⇒ String
Returns text of alert.
22 23 24 25 |
# File 'lib/watir-webdriver/alert.rb', line 22 def text assert_exists @alert.text end |