Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用python代码如下水平拖动屏幕,但设备会响应长按事件。我不知道为什么会这样。我真诚地有人可以帮助我解决这个问题,谢谢~!
Python代码: device.drag((380,520),(300,520),0.1,10)
在我的申请中,我和你有同样的问题。我的解决方案只是禁用长按。实际上,我发现的不仅是“拖动”,onLongPress() 也会由 MoneyDevice.press() 触发,然后通过两次调用 press() 无法模拟双击。
毕竟,通过禁用长按,drag() 和两个 press() 对我有用!