Skip to content

Commit 3eb7b67

Browse files
authored
updated brew command
```brew install chromedriver``` fails, needs to be run through cask, ```brew cask install chromedriver``` geckodriver still works through normal install
1 parent d850710 commit 3eb7b67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

help_docs/webdriver_installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ To run automation on various web browsers, you'll need to download a driver file
2020
* On a Mac, you can install drivers more easily by using ``brew`` (aka ``homebrew``), but you have to install that first. [Brew installation instructions are here](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/install_python_pip_git.md).
2121

2222
```bash
23-
brew install chromedriver
23+
brew cask install chromedriver
2424

2525
brew install geckodriver
2626
```
2727

2828
(NOTE: If your existing version of chromedriver is less than 2.37, **upgrading is required!**)
2929

3030
```bash
31-
brew upgrade chromedriver
31+
brew cask upgrade chromedriver
3232

3333
brew upgrade geckodriver
3434
```

0 commit comments

Comments
 (0)