feature: initial commit for all new image changes
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#!/bin/bash -e -o pipefail
|
||||
################################################################################
|
||||
## File: install-firefox.sh
|
||||
## Desc: Install firefox browser
|
||||
################################################################################
|
||||
|
||||
source ~/utils/utils.sh
|
||||
|
||||
echo "Installing Firefox..."
|
||||
brew install --cask firefox
|
||||
|
||||
echo "Installing Geckodriver..."
|
||||
brew_smart_install "geckodriver"
|
||||
geckoPath="$(brew --prefix geckodriver)/bin"
|
||||
|
||||
echo "Add GECKOWEBDRIVER to bashrc..."
|
||||
echo "export GECKOWEBDRIVER=${geckoPath}" >> ${HOME}/.bashrc
|
||||
|
||||
invoke_tests "Browsers" "Firefox"
|
||||
Reference in New Issue
Block a user