module Appium::Ios

def text text

Returns:
  • (Element) - the first matching element

Parameters:
  • text (String) -- the text to search for
def text text
  js = first_ele_js "value contains[c] '#{text}'"
  execute_script js
end