gpt4 book ai didi

android - 如何使用 Android UI Automator 双击

转载 作者:行者123 更新时间:2023-12-04 11:47:42 27 4
gpt4 key购买 nike

我正在尝试使用 Android UI Automator 工具双击 View ,但没有 API 可以双击。有没有其他方法可以使用 ui automator 双击双击。

提前致谢。

最佳答案

Gesture interaction with the device
Click on the screen

d.click(x, y)
Double click

d.double_click(x, y)
d.double_click(x, y, 0.1) # default duration between two click is 0.1s
Long click on the screen

d.long_click(x, y)
d.long_click(x, y, 0.5) # long click 0.5s (default)
Swipe

d.swipe(sx, sy, ex, ey)
d.swipe(sx, sy, ex, ey, 0.5) # swipe for 0.5s(default)

d.drag(sx, sy, ex, ey)
d.drag(sx, sy, ex, ey, 0.5) # swipe for 0.5s(default)
Swipe points

# swipe from point(x0, y0) to point(x1, y1) then to point(x2, y2)
# time will speed 0.2s bwtween two points
d.swipe_points([(x0, y0), (x1, y1), (x2, y2)], 0.2))

关于android - 如何使用 Android UI Automator 双击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22686655/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com