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上运行的主要内容,如果未能解决你的问题,请参考以下文章