chrome headless Manual 模式渲染网页
Posted 北风之神0509
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了chrome headless Manual 模式渲染网页相关的知识,希望对你有一定的参考价值。
可以看看这个里面的介绍,写得很好。https://duo.com/blog/driving-headless-chrome-with-python
from selenium import webdriver
from selenium.webdriver.chrome.options import Options`
chrome_options = Options()
chrome_options.add_argument("--headless") ##需要加上,否则会弹出真实浏览器
chrome_options.binary_location =‘
/opt/google/chrome/chrome‘
driver = webdriver.Chrome(executable_path="
/home/yangdefeng/Downloads/chromedriver")
准备条件是selenium3.4 ,py2或py3,chrome 59或60版本,chrome driver 2.30。看文章里面写的介绍是chrome金丝雀版本,但59版本以后有headless模式了。
附上chromedriver下载地址
http://chromedriver.storage.googleapis.com/index.html,60版本的chrome 下载2.30就可以。
以上是关于chrome headless Manual 模式渲染网页的主要内容,如果未能解决你的问题,请参考以下文章
使用 `google-chrome --headless` 时如何设置浏览器窗口大小?