module Appium module Ios # Find the first element containing value # @param value [String] the value to search for # @return [Element] def find value ele_by_json_visible_contains '*', value end # Find all elements containing value # @param value [String] the value to search for # @return [Array] def finds value eles_by_json_visible_contains '*', value end # Find the first element exactly matching value # @param value [String] the value to search for # @return [Element] def find_exact value ele_by_json_visible_exact '*', value end # Find all elements exactly matching value # @param value [String] the value to search for # @return [Array] def finds_exact value eles_by_json_visible_exact '*', value end end # module Ios end # module Appium