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.
我已经准备好在单个设备上工作的测试脚本。现在我必须在多个设备上运行我的测试用例。有没有解决方案。或者我必须为此使用任何构建工具。
您可以将要测试的设备连接到 adb 服务器,然后在您的测试脚本中针对每个设备:
adb -s <devices ip>:<port>
通过在脚本中使其通用,您可以聪明地了解如何循环连接设备。