2020-10-23 17:59:08 +03:00
|
|
|
#!/bin/bash -e -o pipefail
|
|
|
|
|
|
2020-09-10 14:34:08 +03:00
|
|
|
echo "Installing Chrome..."
|
|
|
|
|
brew cask install google-chrome
|
|
|
|
|
|
|
|
|
|
echo "Installing Chrome Driver"
|
|
|
|
|
brew cask install chromedriver
|
|
|
|
|
|
|
|
|
|
echo "Installing Selenium"
|
|
|
|
|
brew install selenium-server-standalone
|
|
|
|
|
|
|
|
|
|
CHROMEWEBDRIVER_DIR=$(readlink $(which chromedriver) | xargs dirname)
|
|
|
|
|
echo "export CHROMEWEBDRIVER=$CHROMEWEBDRIVER_DIR" >> "${HOME}/.bashrc"
|