File tree 2 files changed +21
-0
lines changed
2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change
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'
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments