Class: TestCentricity::AppTextField

Inherits:
AppUIElement show all
Defined in:
lib/testcentricity/app_elements/textfield.rb

Instance Attribute Summary

Attributes inherited from AppUIElement

#context, #locator, #name, #parent, #type

Instance Method Summary collapse

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_lengthInteger

Return maxlength character count of a text field.

Examples:

max_num_chars = comments_field.get_max_length

Returns:

  • (Integer)


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_placeholderString

Return placeholder text of a text field.

Examples:

placeholder_message = username_field.get_placeholder

Returns:

  • (String)


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?

Examples:

comments_field.read_only?

Returns:

  • (Boolean)


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