Version: 1.10.0
AndroidInput
- androidInput.drag(from, to, steps)
- androidInput.press(key)
- androidInput.swipe(from, segments, steps)
- androidInput.tap(point)
- androidInput.type(text)
#
androidInput.drag(from, to, steps)from
<Object> The start point of the drag.to
<Object> The end point of the drag.steps
<number> The number of steps in the drag. Each step takes 5 milliseconds to complete.
Performs a drag between from
and to
points.
#
androidInput.press(key)key
<[AndroidKey]> Key to press.
Presses the key
.
#
androidInput.swipe(from, segments, steps)from
<Object> The point to start swiping from.segments
<Array<Object>> Points following thefrom
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.
Swipes following the path defined by segments
.
#
androidInput.tap(point)Taps at the specified point
.
#
androidInput.type(text)text
<string> Text to type.
Types text
into currently focused widget.