selenium部署在centos服务器实操

  • 安装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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值