os x升级到10.10后appium不能测试通过的解决办法

IOSChecker.prototype.getMacOSXVersion = function (cb) {
exec("sw_vers -productVersion", function (err, stdout) {
if (err === null) {
if (stdout.match(‘10.8‘) !== null) {
this.osVersion = ‘10.8‘;
cb(null, "Mac OS X 10.8 is installed.");
} else if (stdout.match(‘10.9‘) !== null) {
this.osVersion = ‘10.9‘;
cb(null, "Mac OS X 10.9 is installed.");
} else if (stdout.match(‘10.10‘) !== null){
this.osVersion = ‘10.10‘;
cb(null, "Mac OS X 10.10 is installed.");
} else {
this.log.fail("Could not detect Mac OS X Version", cb);
}
} else {
this.log.fail("Unknown SW Version Command: " + err, cb);
}
}.bind(this));
};

 

修改下这个文件,加入10.10版本即可

/usr/local/lib/node_modules/appium/lib/doctor/ios.js

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。