Skip to content

Commit 0e653d3

Browse files
author
Mike Grybyk
committed
disable edge startup on linux
1 parent 90a635d commit 0e653d3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

HISTORY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# 6.23.0 (2020-12-02)
22
* allow specifying `fullURL` to download selenium or browser driver #520
3-
* add selenium 4 support #518
43
* increased download and startup timeouts, and added more logging #519
4+
* edgechromium startup disabled for linux platform
55

66
# 6.22.2 (2020-11-30)
7-
* edgechromium disabled for linux platform
7+
* edgechromium install disabled for linux platform
88

99
# 6.22.1 (2020-11-27)
1010
* avoid mutating the default config

lib/start.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ function start(_opts, _cb) {
9191

9292
if (process.platform !== 'linux' && fsPaths.chromiumedge) {
9393
args.push('-Dwebdriver.edge.driver=' + fsPaths.chromiumedge.installPath);
94+
} else {
95+
delete fsPaths.chromiumedge;
9496
}
9597

9698
args = args.concat(opts.javaArgs);

0 commit comments

Comments
 (0)