gpt4 book ai didi

python - 有没有办法在 Python 中运行 selenium 时隐藏浏览器?

转载 作者:行者123 更新时间:2023-12-04 14:37:23 24 4
gpt4 key购买 nike

我正在使用 selenium 进行一个项目来抓取数据,但我不希望浏览器打开并弹出。我只是想隐藏浏览器,也不想在任务栏中显示它......

有些人还建议使用 phantomJS 但我没有得到它们。现在做什么 ...

最佳答案

如果你使用 Chrome,你可以像这样设置 headless 参数:

from selenium import webdriver
from selenium.webdriver.chrome.options import Options

driver_exe = 'chromedriver'
options = Options()
options.add_argument("--headless")
driver = webdriver.Chrome(driver_exe, options=options)

关于python - 有没有办法在 Python 中运行 selenium 时隐藏浏览器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60542932/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com