centos7.x配置chrome+chromedriver+selenium

一、系统环境


  • centos-7.6【下载地址】
  • python-3.8.3【下载地址】

二、安装步骤


  • 下载chrome
wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm

在这里插入图片描述

  • 安装chrome
yum -y install ./google-chrome-stable_current_x86_64.rpm

centos7.x配置chrome+chromedriver+selenium_第1张图片

  • 查看chrome版本号:
    在这里插入图片描述
  • 下载chromedriver
wget https://npm.taobao.org/mirrors/chromedriver/83.0.4103.39/chromedriver_linux64.zip

在这里插入图片描述
注意chromedriver的版本【下载地址1,下载地址2】,一定要与你安装的chrome版本号相对应。

  • 解压chromedriver_linux64.zip
unzip chromedriver_linux64.zip
mv chromedriver /usr/bin/
  • 安装selenium
pip3 install selenium

三、测试


新建测试文件baidu.py,内容如下:

from selenium import webdriver

print('开始...')
options = webdriver.ChromeOptions()
options.add_argument('--headless')
options.add_argument('--no-sandbox')

driver = webdriver.Chrome(options=options)
driver.maximize_window()
driver.get('https://www.baidu.com/')
print(driver.title)
driver.quit()
print('结束!')

在这里插入图片描述
The end!

你可能感兴趣的:(centos7.x配置chrome+chromedriver+selenium)