You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
560 B
11 lines
560 B
export DISPLAY=:99.0
|
|
sh -e /etc/init.d/xvfb start
|
|
# export CHROMEDRIVER_VERSION=`curl -s http://chromedriver.storage.googleapis.com/LATEST_RELEASE`
|
|
export CHROMEDRIVER_VERSION=`104.0.5112.79`
|
|
curl -L -O "http://chromedriver.storage.googleapis.com/${CHROMEDRIVER_VERSION}/chromedriver_linux64.zip"
|
|
unzip chromedriver_linux64.zip
|
|
sudo chmod +x chromedriver
|
|
sudo mv chromedriver /usr/local/bin
|
|
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
|
sudo apt install ./google-chrome-stable_current_amd64.deb
|
|
sudo apt-get install libstdc++6
|
|
|