Sha256: 473e850d5bc406951545ce484552798f5ce2e862d02aaf1a92382ddddfcbb7cf
Contents?: true
Size: 879 Bytes
Versions: 7
Compression:
Stored size: 879 Bytes
Contents
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<Element>] 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<Element>] def finds_exact(value) eles_by_json_visible_exact '*', value end end # module Ios end # module Appium
Version data entries
7 entries across 7 versions & 1 rubygems