gpt4 book ai didi

android - 使用 Android View Client(DTmilano) 滚动列表

转载 作者:行者123 更新时间:2023-11-30 03:30:45 24 4
gpt4 key购买 nike

我期待在 Android View 客户端 (dtmilano) 的帮助下滚动列表。该列表有 109 个元素,只有 10 个是可见的。所以我需要向下滚动并再次执行 vc.dump 。请使用示例 python 代码进行指导以执行向下滚动操作。谢谢

最佳答案

你应该使用 MonkeyDevice.drag()你的脚本看起来像这样

list = vc.findViewByIdOrRaise(someid)
(x, y, w, h) = list.getPositionAndSize()
start = (int(x+w/2.0), y+h)
end = (int(x+w/2.0), y)
# scroll 5 times
for i in range(5):
vc.device.drag(start, end, 1.0, 10)

关于android - 使用 Android View Client(DTmilano) 滚动列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17520956/

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