首页 > 代码库 > chrome headless Manual 模式渲染网页
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 模式渲染网页
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。