linux(centos7)安装chrome并查看版本号并下载chrome驱动

首先下载依赖

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

根据版本号下载对应的驱动

CNPM Binaries Mirror

将解压好的文件放在/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)

    原文作者:simple_chenc
    原文地址: https://blog.csdn.net/weixin_42008966/article/details/110127510
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞