Performs a drag between from and to points.
Usage
await androidInput.drag(from, to, steps);
Arguments
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.
Returns
Presses the key.
Usage
await androidInput.press(key);
Arguments
key [AndroidKey]
Key to press.
Returns
Swipes following the path defined by segments.
Usage
await androidInput.swipe(from, segments, steps);
Arguments
from Object
The point to start swiping from.
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
Taps at the specified point.
Usage
await androidInput.tap(point);
Arguments
Returns
Types text into currently focused widget.
Usage
await androidInput.type(text);
Arguments
text string
Text to type.
Returns
© 2025 Microsoft
Licensed under the Apache License, Version 2.0.
https://playwright.dev/docs/api/class-androidinput