是否有可能在Eclipse中的多个设备中运行脚本来运行Appium脚本?
目前我只能在设备上运行脚本。 所以我需要在多个设备中运行脚本。 请帮我找到解决方案。
答案 0 :(得分:1)
请使用'google'来了解..了解Selenium-Grid。
还要寻找'appium parallel execution'(https://discuss.appium.io/t/appium-parallel-execution-grid/4375/80)
答案 1 :(得分:0)
检查Appium。 您必须在不同的端口上运行多个Appium服务并将其连接到设备
$ appium -p 4723 -U deviceName1
$ appium -p 4725 -U deviceName2
然后,您可以使用硒在Eclipse中编写测试脚本。
这里是一篇文章,讨论了如何针对多个设备自动执行UI测试。还提供了实施细节。How I automated testing for an app spanning interactions between multiple devices