Sha256: 853b85b921ae9c33dce93c7fcdc6cbf2db2a0e523a7cd9aef9f5cffb80e5a9d8
Contents?: true
Size: 658 Bytes
Versions: 7
Compression:
Stored size: 658 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
7 entries across 7 versions & 1 rubygems