Cancel commands queueing for the umbrella driver (#9052)

This commit is contained in:
Mykola Mokhnach
2017-08-22 15:45:24 +02:00
committed by Isaac A. Murchie
parent 788b051281
commit 89242a40bc

View File

@@ -41,6 +41,13 @@ class AppiumDriver extends BaseDriver {
this.pendingDrivers = {};
}
/**
* Cancel commands queueing for the umbrella Appium driver
*/
get isCommandsQueueEnabled () {
return false;
}
sessionExists (sessionId) {
const dstSession = this.sessions[sessionId];
return dstSession && dstSession.sessionId !== null;