AndroidInput
方法
¥Methods
drag
Added in: v1.9在 from
和 to
点之间执行拖动。
¥Performs a drag between from
and to
points.
用法
¥Usage
await androidInput.drag(from, to, steps);
参数
¥Arguments
拖动的起点。
¥The start point of the drag.
拖动的终点。
¥The end point of the drag.
拖动的步数。每个步骤需要 5 毫秒才能完成。
¥The number of steps in the drag. Each step takes 5 milliseconds to complete.
返回
¥Returns
press
Added in: v1.9按 key
。
¥Presses the key
.
用法
¥Usage
await androidInput.press(key);
参数
¥Arguments
key
[AndroidKey]#
要按下的键。
¥Key to press.
返回
¥Returns
swipe
Added in: v1.9沿着 segments
定义的路径滑动。
¥Swipes following the path defined by segments
.
用法
¥Usage
await androidInput.swipe(from, segments, steps);
参数
¥Arguments
开始滑动的点。
¥The point to start swiping from.
滑动手势中 from
点之后的点。
¥Points following the from
point in the swipe gesture.
每个分段的步数。每个步骤需要 5 毫秒才能完成,因此 100 步意味着每个分段需要半秒。
¥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
tap
Added in: v1.9在指定的 point
处点击。
¥Taps at the specified point
.
用法
¥Usage
await androidInput.tap(point);
参数
¥Arguments
要点击的点。
¥The point to tap at.
返回
¥Returns
type
Added in: v1.9在当前聚焦的小部件中键入 text
。
¥Types text
into currently focused widget.
用法
¥Usage
await androidInput.type(text);
参数
¥Arguments
要输入的文本。
¥Text to type.
返回
¥Returns