Sha256: 9ed90c17497829401397a3a74f3001892ee87b855e96b02283f4a6c357695755
Contents?: true
Size: 1.19 KB
Versions: 35
Compression:
Stored size: 1.19 KB
Contents
module Appium module Core module Ios module SearchContext # @!method uiautomation_find # find_element/s can be used with a [UIAutomation command](https://developer.apple.com/library/ios/documentation/ToolsLanguages/Reference/UIAWindowClassReference/UIAWindow/UIAWindow.html#//apple_ref/doc/uid/TP40009930). # # @example # find_elements :uiautomation, 'elements() # # # @!method ios_predicate_string_find # find_element/s can be used with a [Predicates](https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/Predicates/AdditionalChapters/Introduction.html) # # @example # find_elements :predicate, "isWDVisible == 1" # find_elements :predicate, 'wdName == "Buttons"' # find_elements :predicate, 'wdValue == "SearchBar" AND isWDDivisible == 1' # def self.extend ::Appium::Core::Base::SearchContext.add_finders(uiautomation: '-ios uiautomation') ::Appium::Core::Base::SearchContext.add_finders(predicate: '-ios predicate string') end end # class << self end # module Ios end # module Core end # module Appium
Version data entries
35 entries across 35 versions & 1 rubygems