如何在 pcloudy、headspin 等云设备上运行空手道 Appium 测试?

how to run karate appium tests on cloud devices like pcloudy, headspin and etc?

提问人:sschandra 提问时间:12/22/2021 更新时间:12/22/2021 访问量:71

问:

我们正在使用空手道构建移动自动化测试,并希望在云设备上执行案例,尝试将 webdriverpath 值更改为云 url,但该值被附加在 localhost:4723/ 之后。在这里,我想用远程主机和端口覆盖localhost。

  • configure driver = { type: 'android', webDriverPath : “/wd/hub”, start: false}
空手道

评论

0赞 Peter Thomas 12/22/2021
试着看看其他的答案,比如这个答案: stackoverflow.com/a/68624770/143475

答:

2赞 sschandra 12/22/2021 #1

获取了有关探索驱动程序配置的解决方案,删除 webDriverPath 并将其替换为 webDriverUrl,如下所示:

  • configure driver = { type: 'android', webDriverUrl: '/wd/hub', start: false, httpConfig : { readTimeout: 120000 }}

评论

0赞 sanjay pujari 2/7/2023
我也面临着同样的问题。感谢您的解决方案。