Sha256: dc7866948ef81a0f982edea497f33134de04488f1986fe9f095c059b372c7495
Contents?: true
Size: 1.28 KB
Versions: 17
Compression:
Stored size: 1.28 KB
Contents
module Appium module Core # MultiTouch actions allow for multiple touches to happen at the same time, # for instance, to simulate multiple finger swipes. # # Create a series of touch actions by themselves (without a `prepare()`), then # add to a new MultiTouch action. When ready, call `prepare()` and all # actions will be executed simultaneously. # # @example # # @driver = Appium::Core.for(opts).start_driver # action_1 = TouchAction.new(@driver).press(x: 45, y: 100).wait(600).release # action_2 = TouchAction.new(@driver).tap(element: el, x: 50, y:5, count: 3) # # multi_touch_action = MultiTouch.new(@driver) # multi_touch_action.add action_1 # multi_touch_action.add action_2 # multi_touch_action.perform # class MultiTouch attr_reader :driver def initialize(driver) @actions = [] @driver = driver end # Add a touch_action to be performed # @param chain (TouchAction) The action to add to the chain def add(chain) @actions << chain.actions end # Ask Appium to perform the actions def perform @driver.multi_touch @actions @actions.clear end end # class MultiTouch end # module Core end # module Appium
Version data entries
17 entries across 17 versions & 1 rubygems