-
安装google-chrome浏览器rpm
yum install https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm 如果这一步出现报错 'Error: Package: google-chrome-stable-126.0.6478.182-1.x86_64 (/google-chrome-stable_current_x86_64) Requires: libc.so.6(GLIBC_2.25)(64bit) You could try using --skip-broken to work around the problem You could try running: rpm -Va --nofiles --nodigest' 可以参考 https://blog.csdn.net/weixin_43411585/article/details/140486775 解决 主要就是centos7不支持最新chrome126版本的浏览器,可以支持124版本的,降低到124版本就行了
-
查看已安装谷歌浏览器版本
google-chrome -version
-
根据版本下载对应的chromdriver驱动
- 网址:https://googlechromelabs.github.io/chrome-for-testing/#stable
- 下载对应linux版本文件:wget https://storage.googleapis.com/chrome-for-testing-public/123.0.6312.105/linux64/chromedriver-linux64.zip
- 解压文件:unzip chromedriver-linux64.zip
- 移动到全局文件:mv chromedriver /usr/bin/
- 给文件赋值读写权限:chmod 777 /usr/bin/chromedriver
- 查看chromedriver版本:chromedriver -version
-
安装selenium
pip3 install selenium -i https://pypi.tuna.tsinghua.edu.cn/simple
-
测试脚本
from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver import ChromeOptions import time option = ChromeOptions() # 设置浏览器的无头浏览器, 无界面, 浏览器将不提供界面, Linux操作系统无界面下就可以运行 option.add_argument("--headless") # 解决devtoolsactiveport文件不存在的报错 option.add_argument("--no-sandbox") # 官方推荐的关闭选项, 规避一些BUG option.add_argument("--disable-gpu") driver = webdriver.Chrome(options=option) # 页面全局等待时间 driver.implicitly_wait(5) driver.get('https://mister.xin') # 等待2秒执行 time.sleep(2) icp = driver.find_element(By.XPATH,'/html/body/footer/div[2]/div/ul/li/a').text print(icp) driver.close()
参考链接🔗https://blog.csdn.net/momoda118/article/details/132230459