我有在aws devicefarm上运行的TestNG脚本,我想在我的Android设备上的本地appium上测试它,
我可以知道如何在我的本地设备上运行吗?
谢谢
答案 0 :(得分:1)
要在本地测试Appium测试包,您需要设置desired capabilities。
Android的外观示例如下:
{
"platformName": "Android",
"platformVersion": "11.0",
"deviceName": "Find device name using `adb devices`",
"automationName": "uiautomator/uiautomator2",
"app": "/path/to/my.apk"
}
以下是appium在其github上提供的示例的链接。
https://github.com/appium/sample-code/tree/master/sample-code/examples
一般来说,您不会按照此模式在Device Farm上进行测试。那是;您应该在本地开发测试,然后在Device Farm上进行测试。
我希望这会有所帮助。如果有任何其他问题,请随时告诉我。