python 基础 九 Chorme handless

Chrome handless
Chrome handless 模式,Google 针对 Chrome 浏览器 59版 新增的一种模式,可以让你不打开 UI 界面的情况下使用 Chrome 浏览器,所以运行效果与 Chrome 保持完美一致
Chrome handless的系统要求
1、Chrome 版本要求
Unix/Linux 系统要求 chrome >= 59
Windows 系统需要 chrome >= 60
2、Python 版本 >= 3.6
3、Selenium 版本 >= 3.4.*
4、ChromeDriver 版本 >= 2.31
Chrome handless的基本配置 (直接复制放在.py文件里面,修改相应的配置):

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
 
chrome_options = Options()
chrome_options. add_argument('--headless')
 
#path是自己电脑的Chrome浏览器文件地址
path = r'C:\Program Files\Google\Chrome\Application\chrome.exe'
chrome_options.binary_location = path
 
browser = webdriver.Chrome(options=chrome_options)
posted @ 2024-07-14 16:33  donghongchao  阅读(13)  评论(0编辑  收藏  举报