Skip to content

Commit

Permalink
fix(chrome): DevToolsActivePort file doesn't exist error on linux (#8) (
Browse files Browse the repository at this point in the history
#10)

* fix(chrome): DevToolsActivePort issue on Linux

Add --disable-dev-shm-usage flag to Chrome capabilities

* chore: bump chrome & chromedriver to build 885287
  • Loading branch information
hbollon committed Aug 21, 2021
1 parent ec6aad3 commit 32e66e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dependencies.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const (
// See https://omahaproxy.appspot.com for a list of current releases.
//
// Update this periodically.
desiredChromeBuild = "664981" // This corresponds to version 76.0.3809.0
desiredChromeBuild = "885287"

// desiredFirefoxVersion is the known version of Firefox to download.
//
Expand Down
1 change: 1 addition & 0 deletions engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ func (s *Selenium) InitChromeWebDriver() {
Args: []string{
"--disable-extensions",
"--disable-infobars",
"--disable-dev-shm-usage",
"--no-sandbox",
"--window-size=360,640",
},
Expand Down

0 comments on commit 32e66e9

Please sign in to comment.