---恢復內容開始---
1.反復提示could not install io.appium.settings 和io.appium.unlocked這個兩個apk. 這兩個安裝過一次就不用重復安裝了,安裝目錄在
D:\Program Files (x86)\Appium\node_modules\appium\build\settings_apk\settings_apk-debug.apk
D:\Program Files (x86)\Appium\node_modules\appium\build\unlock_apk\unlock_apk-debug.apk
安裝過后在appium里面設置為不用每次都重裝這兩個apk,不僅浪費時間還會生成彈窗,特別煩,屏蔽方法,注釋掉一些內容,如下:
Appium\node_modules\appium\lib\devices\android\android.jasync.series([
this.initJavaVersion.bind(this), this.initAdb.bind(this), this.packageAndLaunchActivityFromManifest.bind(this), this.initUiautomator.bind(this), this.prepareDevice.bind(this), this.checkApiLevel.bind(this), this.pushStrings.bind(this), this.processFromManifest.bind(this), this.uninstallApp.bind(this), this.installAppForTest.bind(this), this.forwardPort.bind(this), //this.pushAppium.bind(this), this.initUnicode.bind(this), // DO NOT push settings app and unlock app //this.pushSettingsApp.bind(this), //this.pushUnlock.bind(this), function (cb) {this.uiautomator.start(cb);}.bind(this), this.wakeUp.bind(this), this.unlock.bind(this), this.getDataDir.bind(this), this.setupCompressedLayoutHierarchy.bind(this), this.startAppUnderTest.bind(this), this.initAutoWebview.bind(this), this.setActualCapabilities.bind(this) ], function (err) {
2取消重新安裝IME.APK
Appium\node_modules\appium\lib\devices\android\android-common.js
androidCommon.pushUnicodeIME = function (cb) { cb() /* logger.debug("Pushing unicode ime to device..."); var imePath = path.resolve(__dirname, "..", "..", "..", "build", "unicode_ime_apk", "UnicodeIME-debug.apk"); fs.stat(imePath, function (err) { if (err) { cb(new Error("Could not find Unicode IME apk; please run " + "'reset.sh --android' to build it.")); } else { this.adb.install(imePath, false, cb); } }.bind(this)); */ };
3.報錯shell "ps 'uiautomator'" bad pid uiautomator
查看大多數資料說的是做如下更改:
修改appium中adb.js文件,在代碼var outlines = stdout.split(“\n”);后加outlines.shift();
目錄:C:\Program Files\Appium\node_modules\appium\node_modules\appium-adb\lib
如下:
---恢復內容結束---
1.反復提示could not install io.appium.settings 和io.appium.unlocked這個兩個apk. 這兩個安裝過一次就不用重復安裝了,安裝目錄在
D:\Program Files (x86)\Appium\node_modules\appium\build\settings_apk\settings_apk-debug.apk
D:\Program Files (x86)\Appium\node_modules\appium\build\unlock_apk\unlock_apk-debug.apk
安裝過后在appium里面設置為不用每次都重裝這兩個apk,不僅浪費時間還會生成彈窗,特別煩,屏蔽方法,注釋掉一些內容,如下:
Appium\node_modules\appium\lib\devices\android\android.jasync.series([
this.initJavaVersion.bind(this), this.initAdb.bind(this), this.packageAndLaunchActivityFromManifest.bind(this), this.initUiautomator.bind(this), this.prepareDevice.bind(this), this.checkApiLevel.bind(this), this.pushStrings.bind(this), this.processFromManifest.bind(this), this.uninstallApp.bind(this), this.installAppForTest.bind(this), this.forwardPort.bind(this), //this.pushAppium.bind(this), this.initUnicode.bind(this), // DO NOT push settings app and unlock app //this.pushSettingsApp.bind(this), //this.pushUnlock.bind(this), function (cb) {this.uiautomator.start(cb);}.bind(this), this.wakeUp.bind(this), this.unlock.bind(this), this.getDataDir.bind(this), this.setupCompressedLayoutHierarchy.bind(this), this.startAppUnderTest.bind(this), this.initAutoWebview.bind(this), this.setActualCapabilities.bind(this) ], function (err) {
2取消重新安裝IME.APK
Appium\node_modules\appium\lib\devices\android\android-common.js
androidCommon.pushUnicodeIME = function (cb) { cb() /* logger.debug("Pushing unicode ime to device..."); var imePath = path.resolve(__dirname, "..", "..", "..", "build", "unicode_ime_apk", "UnicodeIME-debug.apk"); fs.stat(imePath, function (err) { if (err) { cb(new Error("Could not find Unicode IME apk; please run " + "'reset.sh --android' to build it.")); } else { this.adb.install(imePath, false, cb); } }.bind(this)); */ };
3.報錯shell "ps 'uiautomator'" bad pid uiautomator
查看大多數資料說的是做如下更改:
修改appium中adb.js文件,在代碼var outlines = stdout.split(“\n”);后加outlines.shift();
目錄:C:\Program Files\Appium\node_modules\appium\node_modules\appium-adb\lib
如下:
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(); //bad pid 'uiautomator' 添加這一行
但我用這種方法仍然不行,后面在網上找到這種更改方式
1、找到appium的安裝目錄下的adb.js文件,目錄為:Appium\node_modules\appium\node_modules\appium-adb\lib
2、打開adb.js,找到如下代碼:
ADB.prototype.shell = function (cmd, cb) {
if (cmd.indexOf('"') === -1) {
cmd = '"' + cmd + '"';
}
var execCmd = 'shell ' + cmd;
this.exec(execCmd, cb);
};
在這段代碼下面加入這段代碼:
ADB.prototype.shell_grep = function (cmd, grep, cb) {
if (cmd.indexOf('"') === -1) {
cmd = '"' + cmd + '"';
}
var execCmd = 'shell ' + cmd + '| grep ' + grep;
this.exec(execCmd, cb);
};
再找到如下代碼:
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();
_.each(outlines, function (outline) {
if (outline.indexOf(name) !== -1) {
procs.push(outline);
}
});
if (procs.length < 1) {
logger.debug("No matching processes found");
return cb(null, []);
}
var pids = [];
_.each(procs, function (proc) {
var match = /[^\t ]+[\t ]+([0-9]+)/.exec(proc);
if (match) {
pids.push(parseInt(match[1], 10));
}
});
if (pids.length !== procs.length) {
var msg = "Could not extract PIDs from ps output. PIDS: " +
JSON.stringify(pids) + ", Procs: " + JSON.stringify(procs);
return cb(new Error(msg));
}
cb(null, pids);
});
};
把這段代碼注釋掉,用如下代碼代替:
ADB.prototype.getPIDsByName = function (name, cb) {
logger.debug("Getting all processes with '" + name + "'");
this.shell_grep("ps", name, function (err, stdout) {
if (err) {
logger.debug("No matching processes found");
return cb(null, []);
}
var pids = [];
_.each(procs, function (proc) {
var match = /[^\t ]+[\t ]+([0-9]+)/.exec(proc);
if (match) {
pids.push(parseInt(match[1], 10));
}
});
if (pids.length !== procs.length) {
var msg = "Could not extract PIDs from ps output. PIDS: " +
JSON.stringify(pids) + ", Procs: " + JSON.stringify(procs);
return cb(new Error(msg));
}
cb(null, pids);
});
};
3、重啟appium
問題解決。