module Appium::Ios

def all_ele_js predicate

Returns:
  • (String) - the completed JavaScript program

Parameters:
  • predicate (String) -- the predicate

Other tags:
    Private: -
def all_ele_js predicate
  (<<-JS).strip # remove trailing newline
    au.mainApp.getAllWithPredicate("#{predicate}");
  JS
end