如何在多个设备中运行 Robotium 自动化测试用例
我已经准备好在单个设备中工作的测试脚本。现在我必须在多个设备中运行我的测试用例。有没有解决方案。或者我必须使用任何构建工具。
I have my test scripts ready which work in single device.. Now i have to run my testcases in multiple device.. Is there any solution for that.. or i have to use any build tool for that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将要测试的设备连接到 adb 服务器,然后在测试脚本中针对每个设备:
通过在脚本中使其通用,您可以明智地了解如何循环连接的设备。
You can connect the devices you want to test to the adb server, then in your test scripts target each device:
You could be smart about how you cycle through the connected devices, by making it generic in your script.