Class: TestCentricity::AppTextField
- Inherits:
-
AppUIElement
- Object
- AppUIElement
- TestCentricity::AppTextField
- Defined in:
- lib/testcentricity/app_elements/textfield.rb
Instance Attribute Summary
Attributes inherited from AppUIElement
#context, #locator, #name, #parent, #type
Instance Method Summary collapse
-
#get_max_length ⇒ Integer
Return maxlength character count of a text field.
-
#get_placeholder ⇒ String
Return placeholder text of a text field.
-
#initialize(name, parent, locator, context) ⇒ AppTextField
constructor
A new instance of AppTextField.
-
#read_only? ⇒ Boolean
Is text field set to read-only?.
Methods inherited from AppUIElement
#clear, #click, #disabled?, #double_tap, #enabled?, #exists?, #get_attribute, #get_caption, #get_locator, #get_name, #get_object_type, #get_value, #height, #hidden?, #scroll, #selected?, #send_keys, #set, #swipe, #tag_name, #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) ⇒ AppTextField
Returns a new instance of AppTextField.
3 4 5 6 |
# File 'lib/testcentricity/app_elements/textfield.rb', line 3 def initialize(name, parent, locator, context) super @type = :textfield end |
Instance Method Details
#get_max_length ⇒ Integer
Return maxlength character count of a text field.
26 27 28 29 30 31 |
# File 'lib/testcentricity/app_elements/textfield.rb', line 26 def get_max_length obj = element object_not_found_exception(obj) max_length = obj.attribute('maxlength') max_length.to_i unless max_length.blank? end |
#get_placeholder ⇒ String
Return placeholder text of a text field.
39 40 41 42 43 44 45 46 47 |
# File 'lib/testcentricity/app_elements/textfield.rb', line 39 def get_placeholder obj = element object_not_found_exception(obj) if AppiumConnect.is_webview? obj.attribute('placeholder') else obj.text end end |
#read_only? ⇒ Boolean
Is text field set to read-only?
14 15 16 17 18 |
# File 'lib/testcentricity/app_elements/textfield.rb', line 14 def read_only? obj = element object_not_found_exception(obj) !!obj.attribute('readonly') end |