TA的每日心情 | 无聊 2018-7-6 18:55 |
---|
签到天数: 2 天 连续签到: 1 天 [LV.1]测试小兵
|
appiumappium启动测试APP报错求解啊,试了很多方法,我目前得出的结论是 安卓7.0以上的系统有问题
也在网上找了很多方法, 比如1、 找到appium的安装目录下的adb.js文件,windows版本的目录如下:E:\Appium\node_modules\appium\node_modules\appium-adb\lib
2、 打开adb.js,手动修改该文件下的内容:
在1035行开始这段代码后面加上:outlines.shift();
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
可是我根据这个路径找到的adb 文件里面,只有80行代码
然后我又试了几种方法,总之还没解决
报错内容如下
[MJSONWP] Encountered internal error running command: Error: Error executing adbExec. Original error: 'Command '/Users/mary/androiddevtools/android-sdk-macosx/platform-tools/adb -P 5037 -s ce56d2297cf4 shell ime enable io.appium.android.ime/.UnicodeIME' exited with code 137'; Stderr: ''; Code: '137'
at ADB.execFunc$
|
|