如何让多个设备同时执行MonkeyRunner(Jython脚本)?

发布于 2024-11-19 11:14:12 字数 71 浏览 3 评论 0原文

我写了一个 MonkeyRunner(Jython) 脚本,我想同时在多个设备上运行这个脚本,请帮助我如何做到这一点,非常感谢!

I have wrote a MonkeyRunner(Jython) script and I want running this script in several devices at the same time, please help me how to do it, thanks a lot!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请止步禁区 2024-11-26 11:14:12

不要使用 device = MonkeyRunner.waitForConnection() 连接到设备,而是使用 device = MonkeyRunner.waitForConnection(deviceId=DEVICE_ID),其中 DEVICE_ID 是设备 ID(如 adb 所见) )您尝试连接的设备。

Instead of using device = MonkeyRunner.waitForConnection() to connect to devices use device = MonkeyRunner.waitForConnection(deviceId=DEVICE_ID) where DEVICE_ID is the device id (as seen by adb) of the device that you are trying to connect to.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文