Class: TestCentricity::AppElements::AppCheckBox
- Inherits:
-
AppUIElement
- Object
- AppUIElement
- TestCentricity::AppElements::AppCheckBox
- Defined in:
- lib/testcentricity_apps/app_elements/checkbox.rb
Instance Attribute Summary
Attributes inherited from AppUIElement
#context, #locator, #mru_app_session, #mru_locator, #mru_object, #mru_parent, #name, #parent, #type
Instance Method Summary collapse
-
#check ⇒ Object
Set the check state of a checkbox object.
-
#checked? ⇒ Boolean
Is checkbox checked?.
-
#initialize(name, parent, locator, context) ⇒ AppCheckBox
constructor
A new instance of AppCheckBox.
-
#set_checkbox_state(state) ⇒ Object
Set the check state of a checkbox object.
-
#uncheck ⇒ Object
Uncheck a checkbox object.
Methods inherited from AppUIElement
#clear, #click, #count, #disabled?, #double_tap, #drag_and_drop, #drag_by, #element, #enabled?, #exists?, #get_attribute, #get_caption, #get_locator, #get_name, #get_object_type, #get_value, #height, #hidden?, #hover, #id, #identifier, #long_press, #reset_mru_cache, #scroll_into_view, #selected?, #send_keys, #set, #swipe_gesture, #tap, #visible?, #wait_until_enabled, #wait_until_exists, #wait_until_gone, #wait_until_hidden, #wait_until_value_changes, #wait_until_value_is, #wait_until_visible, #width, #x_loc, #y_loc
Constructor Details
#initialize(name, parent, locator, context) ⇒ AppCheckBox
Returns a new instance of AppCheckBox.
4 5 6 7 |
# File 'lib/testcentricity_apps/app_elements/checkbox.rb', line 4 def initialize(name, parent, locator, context) super @type = :checkbox end |
Instance Method Details
#check ⇒ Object
Set the check state of a checkbox object.
31 32 33 |
# File 'lib/testcentricity_apps/app_elements/checkbox.rb', line 31 def check set_checkbox_state(true) end |
#checked? ⇒ Boolean
Is checkbox checked?
15 16 17 18 19 20 21 22 23 24 |
# File 'lib/testcentricity_apps/app_elements/checkbox.rb', line 15 def checked? obj = element object_not_found_exception(obj) if Environ.is_macos? state = obj.value state.to_bool else obj.selected? end end |
#set_checkbox_state(state) ⇒ Object
Set the check state of a checkbox object.
50 51 52 53 54 55 56 57 58 |
# File 'lib/testcentricity_apps/app_elements/checkbox.rb', line 50 def set_checkbox_state(state) obj = element object_not_found_exception(obj) if state obj.click unless obj.selected? else obj.click if obj.selected? end end |
#uncheck ⇒ Object
Uncheck a checkbox object.
40 41 42 |
# File 'lib/testcentricity_apps/app_elements/checkbox.rb', line 40 def uncheck set_checkbox_state(false) end |