码迷,mamicode.com
首页 > 系统相关 > 详细

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

时间:2020-05-31 18:10:22      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:col   option   nbsp   scree   driver   screens   --   三方   chrome   

"""

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上运行

标签:col   option   nbsp   scree   driver   screens   --   三方   chrome   

原文地址:https://www.cnblogs.com/erchun/p/13019832.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!