Sha256: fceb6b9d46ba26cf99a3b06e155bce31f5bf6bb24f802f3fa2ed4f914ba32eaa

Contents?: true

Size: 790 Bytes

Versions: 2

Compression:

Stored size: 790 Bytes

Contents

module Appium
  module Core
    module Ios
      module Uiautomation
        # @private
        # class_eval inside a method because class Selenium::WebDriver::Element
        # will trigger as soon as the file is required. in contrast a method
        # will trigger only when invoked.
        def patch_webdriver_element
          Selenium::WebDriver::Element.class_eval do
            # Cross platform way of entering text into a textfield
            def type(text, driver = $driver)
              driver.execute_script %(au.getElement('#{ref}').setValue('#{text}');)
            end # def type
          end # Selenium::WebDriver::Element.class_eval
        end # def patch_webdriver_element
      end # module Uiautomation
    end # module Ios
  end # module Core
end # module Appium

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
appium_lib-9.7.1 lib/appium_lib/core/ios/uiautomation/patch.rb
appium_lib-9.7.0 lib/appium_lib/core/ios/uiautomation/patch.rb