mirror of
https://github.com/appium/appium.git
synced 2026-02-07 01:58:55 -06:00
fixed chrome sessionId bug
This commit is contained in:
@@ -56,7 +56,11 @@ ChromeAndroid.prototype.start = function (cb, onDie) {
|
||||
this.prepareChromedriver.bind(this),
|
||||
this.unlock.bind(this),
|
||||
this.createSession.bind(this)
|
||||
], cb);
|
||||
], function (err, results) {
|
||||
if (err) return cb(err);
|
||||
var sessionId = results[3];
|
||||
cb(null, sessionId);
|
||||
});
|
||||
};
|
||||
|
||||
ChromeAndroid.prototype.prepareChromedriver = function (cb) {
|
||||
|
||||
Reference in New Issue
Block a user