File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
javascript/node/selenium-webdriver Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -288,10 +288,9 @@ class Driver extends chromium.Driver {
288
288
let caps = opt_config || new Options ( ) ;
289
289
return /** @type {!Driver } */ ( super . createSession ( caps , opt_serviceExecutor ) ) ;
290
290
}
291
-
292
- static getDefaultService = getDefaultService ;
293
291
}
294
292
293
+ Driver . getDefaultService = getDefaultService ;
295
294
Driver . prototype . VENDOR_COMMAND_PREFIX = "goog" ;
296
295
297
296
Original file line number Diff line number Diff line change @@ -119,7 +119,6 @@ function locateSynchronously(browserName) {
119
119
* Class for managing Edge specific options.
120
120
*/
121
121
class Options extends chromium . Options {
122
- static USE_EDGE_CHROMIUM = 'ms:edgeChromium' ;
123
122
/**
124
123
* Instruct the EdgeDriver to use Edge Chromium if true.
125
124
* Otherwise, use Edge Legacy (EdgeHTML). Defaults to using Edge Legacy.
@@ -133,6 +132,7 @@ class Options extends chromium.Options {
133
132
}
134
133
}
135
134
135
+ Options . USE_EDGE_CHROMIUM = 'ms:edgeChromium' ;
136
136
Options . prototype . BROWSER_NAME_VALUE = Browser . EDGE ;
137
137
Options . prototype . CAPABILITY_KEY = 'ms:edgeOptions' ;
138
138
Options . prototype . VENDOR_CAPABILITY_PREFIX = 'ms' ;
You can’t perform that action at this time.
0 commit comments