Sha256: f1ad592ec71133661aa1e53e21a37041370b1ac6a048aad38dee9c4de65f2c0d
Contents?: true
Size: 656 Bytes
Versions: 12
Compression:
Stored size: 656 Bytes
Contents
module Appium module Ios class << self # @!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). # # ```ruby # find_elements :uiautomation, 'elements() # ``` def extended(mod) Selenium::WebDriver::SearchContext.class_eval do Selenium::WebDriver::SearchContext::FINDERS[:uiautomation] = '-ios uiautomation' end end end # class << self end # module Ios end # module Appium
Version data entries
12 entries across 12 versions & 1 rubygems