首先下载依赖
yum install mesa-libOSMesa-devel gnu-free-sans-fonts wqy-zenhei-fonts
然后下载安装chrome
yum install https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
yum install ./google-chrome-stable_current_x86_64.rpm
查看chrome版本号
google-chrome –version
根据版本号下载对应的驱动
将解压好的文件放在/usr/bin目录下,并且给chromedrive增加可以执行权限
chmod +x chromedriver
然后写一个测试用例试一下
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--headless') #设置无头浏览器请求模式
options.add_argument("--disable-extensions")
options.add_argument("--disable-gpu")
options.add_argument("--no-sandbox") # linux中不写会报错
driver = webdriver.Chrome(options=options)
driver.get('https://www.baidu.com')
print(driver.page_source)