Sha256: 010b7fb167d0515a9406b9e531b475c712da306d078824ce4b2b081f1812ac0f

Contents?: true

Size: 1.4 KB

Versions: 2

Compression:

Stored size: 1.4 KB

Contents

module Appium
  module Android
    EditText = 'android.widget.EditText'

    # Find the first EditText that contains value or by index.
    # @param value [String, Integer] the text to match exactly.
    # If int then the EditText at that index is returned.
    # @return [EditText]
    def textfield value
      return ele_index EditText, value if value.is_a? Numeric
      xpath_visible_contains EditText, value
    end

    # Find all EditTexts containing value.
    # If value is omitted, all EditTexts are returned.
    # @param value [String] the value to search for
    # @return [Array<EditText>]
    def textfields value=false
      return tags EditText unless value
      xpaths_visible_contains EditText, value
    end

    # Find the first EditText.
    # @return [EditText]
    def first_textfield
      first_ele EditText
    end

    # Find the last EditText.
    # @return [EditText]
    def last_textfield
      last_ele EditText
    end

    # Find the first EditText that exactly matches value.
    # @param value [String] the value to match exactly
    # @return [EditText]
    def textfield_exact value
      xpath_visible_exact EditText, value
    end

    # Find all EditTexts that exactly match value.
    # @param value [String] the value to match exactly
    # @return [Array<EditText>]
    def textfields_exact value
      xpaths_visible_exact EditText, value
    end
  end # module Android
end # module Appium

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
appium_lib-2.1.0 lib/appium_lib/android/element/textfield.rb
appium_lib-2.0.0 lib/appium_lib/android/element/textfield.rb