Created
April 8, 2022 08:35
-
-
Save jhd3197/5f015bf718defb3971f7d343ef8c066c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt-get install -y unzip && | |
apt-get update -y && | |
apt-get install -y curl unzip xvfb libxi6 libgconf-2-4 | |
wget -q - https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
apt-get install --yes --force-yes ./google-chrome-stable_current_amd64.deb << 'EOF' | |
apt-get update -y | |
apt-get upgrade -y | |
wget -q - https://chromedriver.storage.googleapis.com/94.0.4606.61/chromedriver_linux64.zip | |
unzip chromedriver_linux64.zip && | |
mv chromedriver /usr/bin/chromedriver && | |
chown root:root /usr/bin/chromedriver && | |
chmod +x /usr/bin/chromedriver |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment