Ubuntu 中 chromdriver 和 geckodriver 的下载和配置

1. 下载地址为:

(1)Chromedriver:

http://chromedriver.storage.googleapis.com/index.html

(2)Geckodriver:

https://github.com/mozilla/geckodriver/releases/

2. 查找文件地址后,下载文件:

1
wget -P /home/user/testWget/ http://chromedriver.storage.googleapis.com/90.0.4430.24/chromedriver_linux64.zip

3. 将 Chromedriver 解压后,放到 /usr/bin 目录下:

1
2
unzip /home/git/testScp/chromedriver_linux64.zip
mv chromedriver /usr/bin

4.Geckodriver 同以上 Chromedriver 步骤。