我想在连接到本地网络的多台设备上测试我的Android应用程序。我正在使用appium测试框架和使用Junit编写的测试用例。我需要执行哪些步骤。
答案 0 :(得分:1)
您必须在不同的端口上运行多个Appium服务并将其连接到设备
$ appium -p 4723 -U deviceName1
$ appium -p 4725 -U deviceName2
此处是讨论如何在多个设备中自动化UI测试的文章。还提供了实施细节。How I automated testing for an app spanning interactions between multiple devices