File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -12,17 +12,22 @@ rvm --default use 4.0.0
1212rvm list
1313ruby --version
1414
15+ # Install Google Chrome
1516wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -O /tmp/google-chrome.deb
1617sudo apt update && sudo apt install -y /tmp/google-chrome.deb && rm /tmp/google-chrome.deb
1718google-chrome --version
1819
20+ # Install Chromedriver
1921CHROMEDRIVER_VERSION=$( google-chrome --version | awk ' {print $3}' )
2022wget https://storage.googleapis.com/chrome-for-testing-public/${CHROMEDRIVER_VERSION} /linux64/chromedriver-linux64.zip
2123unzip chromedriver-linux64.zip
2224sudo mv chromedriver-linux64/chromedriver /usr/local/bin/
2325rm -rf chromedriver-linux64.zip chromedriver-linux64
26+ chromedriver --version
2427
28+ # Install libs
2529sudo apt install -y libvips
2630
31+ # Cleanup
2732sudo apt-get clean
2833sudo rm -rf /var/lib/apt/lists/*
You can’t perform that action at this time.
0 commit comments