appium-andriod自动化实现注意项
Posted 因上努力,果上随缘
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了appium-andriod自动化实现注意项相关的知识,希望对你有一定的参考价值。
注意项:
1.appium需要全局安装,否则run test case 报错“appium not installed”
2.启动appium命令
node /Applications/Appium.app/Contents/Resources/node_modules/appium/build/lib/main.js
3.adb 自动push待测试apk到手机端失败
/data/local/tmp/b2d2916bb5388e1dc281ec3e71ef1234.apk: No such file or directory,解决方案是手动执行命令“adb push xxx.apk /data/local/tmp/b2d2916bb5388e1dc281ec3e71ef1234.apk”
4.Screen did not unlock successfully
解决方案参考:https://github.com/appium/appium-android-driver/blob/master/docs/UNLOCK.md,如下指定
Using the unlock with UIAutomation capabilities:
{
"unlockType": "pin",
"unlockKey": "1111"
}
以上是关于appium-andriod自动化实现注意项的主要内容,如果未能解决你的问题,请参考以下文章