📌  相关文章
📜  python chromedriver headless selenium - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:12.907000             🧑  作者: Mango

代码示例1
from selenium import webdriver
from selenium.webdriver.chrome.options import Options

options = Options()
options.headless = True
driver = webdriver.Chrome(CHROMEDRIVER_PATH, chrome_options=options)