按照这个方法解决就行,
解决 Android 7.0 系统的手机无法执行 appium 脚本的问题,改问题的具体解决方法如下:
1、 找到 appium 的安装目录下的 adb.js 文件,windows 版本的目录如下:Appium\node_modules\appium\node_modules\appium-adb\lib
2、 打开 adb.js,手动修改该文件下的内容:
ADB.prototype.getPIDsByName = function (name, cb) {
logger.debug("Getting all processes with '" + name + "'");
this.shell("ps '" + name + "'", function (err, stdout) {
if (err) return cb(err);
stdout = stdout.trim();
var procs = [];
var outlines = stdout.split("\n");
outlines.shift(); //在该处添加此行代码
3、重启 appium