appium android测试碰到的坑

Appium 1.4.13在Android 7上有bug

报错:Failure [INSTALL_FAILED_ALREADY_EXISTS: Attempt to re-install io.appium.settings without firstuninstalling.]

原解决方案见:https://discuss.appium.io/t/support-version-android-n/10206/5

总结自己的解决方案:

原因:

1. adb.js 中1035 行this.shell("ps '" + name + "'", function (err, stdout) {

对应执行的指令是ps 'uiautomator', Android7不支持这个指令格式,所以执行结果是bad pid'uiautomator'

目前Appium未对此进行处理,所以需要修改此指令的执行方式

即将

this.shell("ps '" + name + "'", function (err, stdout) {

if (err) return cb(err);

替换成

this.shell_grep("ps", name, function (err, stdout) {

if (err) {

logger.debug("No matching processes found");

return cb(null, []);

}

并增加上面用到的shell_grep函数:

ADB.prototype.shell_grep = function (cmd, grep, cb) {

if (cmd.indexOf('"') === -1) {

cmd = '"' + cmd + '"';

}

var execCmd = 'shell ' + cmd + '| grep ' + grep;

this.exec(execCmd, cb);

};

你可能感兴趣的:(appium android测试碰到的坑)