Skip to main content
Version: 1.15

AndroidInput

androidInput.drag(from, to, steps)#

Performs a drag between from and to points.

androidInput.press(key)#

Presses the key.

androidInput.swipe(from, segments, steps)#

  • from <Object> The point to start swiping from.#
  • segments <Array<Object>> Points following the from point in the swipe gesture.#
  • steps <number> The number of steps for each segment. Each step takes 5 milliseconds to complete, so 100 steps means half a second per each segment.#
  • returns: <Promise<void>>#

Swipes following the path defined by segments.

androidInput.tap(point)#

Taps at the specified point.

androidInput.type(text)#

Types text into currently focused widget.