前言
- 在 Linux 服务器上运行自动化测试或网页爬虫时,常常需要使用 Selenium 来驱动浏览器进行操作。然而,Linux 服务器通常没有图形用户界面(GUI),这就需要使用无界面模式(headless mode)来运行浏览器。本文将介绍如何在 Linux 无界面模式下使用 Selenium。本文以 centos 为例进行演示。
什么是无界面模式?
- 无界面模式(headless mode)是一种不显示图形用户界面的浏览器运行方式。浏览器在后台运行,执行所有操作但不显示任何窗口。这对于服务器环境特别有用,因为它们通常没有 GUI 环境。
具体步骤
安装谷歌浏览器
代码语言:txt复制yum install -y https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
查看安装的谷歌浏览器的版本
代码语言:txt复制yum list | grep chrome
下载对应版本驱动并安装
代码语言:txt复制wget http://npm.taobao.org/mirrors/chromedriver/89.0.4389.23/chromedriver_linux64.zip
# 安装
yum install -y unar
unar chromedriver_linux64.zip
Python 测试代码
Python 3.x
selenium==4.16.0
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service import Service
# 配置无头浏览器选项
options = Options()
options.add_argument("--headless")
options.add_argument("--disable-gpu")
options.add_argument("--no-sandbox")
options.add_argument("--disable-dev-shm-usage")
options.add_argument("--disable-blink-features=AutomationControlled")
options.add_experimental_option('excludeSwitches', ['enable-automation'])
options.add_experimental_option('useAutomationExtension', False)
driver_executable_path = "./chromedriver"
chrome_service = Service(driver_executable_path)
driver = webdriver.Chrome(service=chrome_service, options=options)
driver.get("http://www.baidu.com")
driver.quit()
总结
- 在 Linux 无界面模式下使用 Selenium 可以帮助你在没有图形用户界面的服务器上进行自动化测试和网页爬取。通过正确配置浏览器和处理依赖问题,你可以顺利地在无界面模式下运行 Selenium 完成各项任务。希望本文能帮助你学会在 Linux 环境中使用 Selenium。
个人简介