CentOS7 安装Selenium(使用webdriver_manager自动安装ChromeDriver)

在 CentOS 7 上安装 Selenium 通常涉及几个步骤,包括安装 Python、安装 Selenium 库、安装 WebDriver 以及配置环境。以下是详细的步骤:

1. 安装 Python 和 pip

如果你的系统中还没有安装 Python 和 pip,可以使用以下命令进行安装:

sh 复制代码
sudo yum update -y
sudo yum install -y python3
sudo yum install -y python3-pip

验证安装:

sh 复制代码
python3 --version
pip3 --version

2. 安装 Selenium 库

使用 pip 安装 Selenium:

sh 复制代码
pip3 install selenium

3. 安装 WebDriver

Selenium 需要 WebDriver 来与浏览器进行交互。根据你使用的浏览器,安装相应的 WebDriver。

安装 ChromeDriver
  1. 安装 Google Chrome

    sh 复制代码
    sudo yum install -y wget
    # wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
    # sudo yum localinstall -y google-chrome-stable_current_x86_64.rpm
    # 安装低版本
    wget http://dist.control.lth.se/public/CentOS-7/x86_64/google.x86_64/google-chrome-stable-102.0.5005.115-1.x86_64.rpm
    sudo yum localinstall -y google-chrome-stable-102.0.5005.115-1.x86_64.rpm
  2. 使用 webdriver_manager 来安装 ChromeDriver

python 复制代码
# install_chromedirver.py
import os
import subprocess
import shutil
import platform  # 导入 platform 模块
from webdriver_manager.chrome import ChromeDriverManager

# 安装并获取最新的 ChromeDriver 版本
driver_path = ChromeDriverManager().install()
print(f"ChromeDriver downloaded to: {driver_path}")

def move_chromedriver(driver_path):
    system = platform.system()
    if system in ["Linux", "Darwin"]:
        destination_path = "/usr/local/bin/chromedriver"
    elif system == "Windows":
        destination_path = os.path.join(os.environ['WINDIR'], 'system32', 'chromedriver.exe')
    else:
        raise Exception(f"Unsupported OS: {system}")

    # 确保目标目录存在
    os.makedirs(os.path.dirname(destination_path), exist_ok=True)
    
    # 移动文件并设置权限
    shutil.move(driver_path, destination_path)
    os.chmod(destination_path, 0o755)
    return destination_path

def get_chromedriver_version(driver_path):
    try:
        # 调用命令行工具 chromedriver --version
        output = subprocess.check_output([driver_path, '--version'])
        # 解码输出并获取版本号
        version = output.decode('utf-8').strip()
        return version
    except Exception as e:
        print(f"Error occurred while getting ChromeDriver version: {e}")
        return None

def main():
    print("Moving ChromeDriver to /usr/local/bin or system32...")
    new_driver_path = move_chromedriver(driver_path)
    print(f"ChromeDriver moved to: {new_driver_path}")

    print("Checking ChromeDriver version...")
    chromedriver_version = get_chromedriver_version(new_driver_path)
    if chromedriver_version:
        print(f"ChromeDriver version: {chromedriver_version}")
    else:
        print("Failed to get ChromeDriver version.")

if __name__ == "__main__":
    main()

3. 执行命令安装

bash 复制代码
sudo python install_chromedirver.py

4. 测试 Selenium 安装(无头模式:在某些环境中(例如:无显示器的服务器),需要以无头模式启动 Chrome。)

创建一个 Python 脚本来测试 Selenium 安装是否成功:

python 复制代码
# test_selenium.py
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.chrome.options import Options
from webdriver_manager.chrome import ChromeDriverManager

chrome_options = Options()
chrome_options.add_argument("--headless")
chrome_options.add_argument("--no-sandbox")
chrome_options.add_argument("--disable-dev-shm-usage")

service = Service(ChromeDriverManager().install())
driver = webdriver.Chrome(service=service, options=chrome_options)

# 测试代码
driver.get("http://www.baidu.com")
print(driver.title)
driver.quit()

运行脚本:

sh 复制代码
python3 test_selenium.py

如果打开了浏览器并打印了页面标题,说明 Selenium 安装成功。

总结

通过以上步骤,应该能够在 CentOS 7 上成功安装并配置 Selenium。这个过程包括安装 Python 和 pip、安装 Selenium 库、安装相应的 WebDriver(如 ChromeDriver 或 GeckoDriver),以及测试配置。

相关推荐
nuclear20111 小时前
使用Python 在Excel中创建和取消数据分组 - 详解
python·excel数据分组·创建excel分组·excel分类汇总·excel嵌套分组·excel大纲级别·取消excel分组
Lucky小小吴2 小时前
有关django、python版本、sqlite3版本冲突问题
python·django·sqlite
zhang-zan2 小时前
nodejs操作selenium-webdriver
前端·javascript·selenium
GIS 数据栈2 小时前
每日一书 《基于ArcGIS的Python编程秘笈》
开发语言·python·arcgis
黑客呀2 小时前
抓包 127.0.0.1 (loopback) 使用 tcpdump+wireshark
测试工具·wireshark·tcpdump
爱分享的码瑞哥2 小时前
Python爬虫中的IP封禁问题及其解决方案
爬虫·python·tcp/ip
傻啦嘿哟3 小时前
如何使用 Python 开发一个简单的文本数据转换为 Excel 工具
开发语言·python·excel
B站计算机毕业设计超人3 小时前
计算机毕业设计SparkStreaming+Kafka旅游推荐系统 旅游景点客流量预测 旅游可视化 旅游大数据 Hive数据仓库 机器学习 深度学习
大数据·数据仓库·hadoop·python·kafka·课程设计·数据可视化
IT古董4 小时前
【人工智能】Python在机器学习与人工智能中的应用
开发语言·人工智能·python·机器学习
湫ccc4 小时前
《Python基础》之pip换国内镜像源
开发语言·python·pip