Bug 1423357 - Remove unused properties from GeckoDriver class. r?whimboo draft
authorAndreas Tolfsen <ato@sny.no>
Tue, 05 Dec 2017 21:59:38 +0000
changeset 707857 93a0602ad0f0c022b4597c9603c35c3262944381
parent 707853 18a9cb5cb32d0e8031d0a80901b199d5e9827d83
child 743047 81b29b440d5c728e0013da2524681fa2db0d8e79
push id92231
push userbmo:ato@sny.no
push dateTue, 05 Dec 2017 22:00:26 +0000
reviewerswhimboo
bugs1423357
milestone59.0a1
Bug 1423357 - Remove unused properties from GeckoDriver class. r?whimboo MozReview-Commit-ID: 3tppkWZtCBP
testing/marionette/driver.js
--- a/testing/marionette/driver.js
+++ b/testing/marionette/driver.js
@@ -145,21 +145,16 @@ this.GeckoDriver = function(appId, serve
 
   // The curent context decides if commands should affect chrome- or
   // content space.
   this.context = Context.Content;
 
   this.sandboxes = new Sandboxes(() => this.getCurrentWindow());
   this.legacyactions = new legacyaction.Chain();
 
-  this.timer = null;
-  this.inactivityTimer = null;
-
-  this.testName = null;
-
   this.capabilities = new session.Capabilities();
 
   this.mm = globalMessageManager;
   this.listener = proxy.toListener(() => this.mm, this.sendAsync.bind(this),
       () => this.curBrowser);
 
   // points to an alert instance if a modal dialog is present
   this.dialog = null;