Sha256: 482595bd9c981ca0ede85f5af50ec3c3f505a958b006e5ed1788415f529d514d
Contents?: true
Size: 875 Bytes
Versions: 3
Compression:
Stored size: 875 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
appium_lib-6.0.0 | lib/appium_lib/ios/element/generic.rb |
appium_lib-5.0.1 | lib/appium_lib/ios/element/generic.rb |
appium_lib-5.0.0 | lib/appium_lib/ios/element/generic.rb |