chrome设置为无头浏览的模式,以便放linux上运行

Posted 2chun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了chrome设置为无头浏览的模式,以便放linux上运行相关的知识,希望对你有一定的参考价值。

"""

web自动化的用例,如果放到linux服务器上面执行?
# 1、将chrome设置为无头浏览的模式(浏览器在后台执行,执行的过程中不会显示浏览器的页面)

# 2、linux安装好web自动化执行的环境(python环境+用到的第三方库都要安装)

# 3、在服务器上安装chrome浏览器


"""

from selenium import webdriver

# 设置driver以无头浏览的模式运行
opt = webdriver.ChromeOptions()
opt.add_argument("--headless")

driver = webdriver.Chrome(options=opt)

driver.get(\'https://www.baidu.com\')

driver.save_screenshot(\'baidu.png\')

driver.quit()

 

 

以上是关于chrome设置为无头浏览的模式,以便放linux上运行的主要内容,如果未能解决你的问题,请参考以下文章

反爬虫中chrome无头浏览器的几种检测与绕过方式

在 Linux 服务器中创建假桌面运行模拟浏览器有头模式

无头模式,Windows和Linux

无头模式,Windows和Linux

Selenium webdriver 无法在 chrome 无头模式下定位元素

Chrome 浏览器无头问题:没有这样的元素:无法在 chrome://downloads/ 找到元素 [重复]