Skip to content

Commit 0402f6e

Browse files
committed
Add extra scripts for chrome and chromedriver
1 parent bdc9e4f commit 0402f6e

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

extra-install-chrome.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
echo Installing chrome browser...
2+
3+
# note: chromium is NOT identical to chrome (chromedriver works but some web sites can detect as not-Chrome)
4+
# sudo apt-get install chromium-browser
5+
6+
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
7+
8+
sudo dpkg -i google-chrome-stable_current_amd64.deb
9+
10+
echo run via 'google-chrome'
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
echo Installing ChromeDriver - required for Selenium ...
2+
3+
wget https://chromedriver.storage.googleapis.com/2.43/chromedriver_linux64.zip
4+
unzip chromedriver_linux64.zip
5+
6+
sudo mv chromedriver /usr/bin/chromedriver
7+
sudo chown root:root /usr/bin/chromedriver
8+
sudo chmod +x /usr/bin/chromedriver
9+
10+
echo Installing Java - required by Selenium ...
11+
sudo apt-get install default-jdk

0 commit comments

Comments
 (0)