【发布时间】:2019-01-04 08:30:57
【问题描述】:
我想让selenium 运行一个无头的谷歌浏览器实例来从某些网站挖掘数据,而无需 UI 开销。我从here 下载了 chromedriver 可执行文件并将其复制到我当前的脚本目录。该驱动程序似乎可以正常使用 selenium 并且能够自动浏览,但是我似乎找不到无头选项。大多数使用 selenium 和 headless chrome 的在线示例大致如下:
import os
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.chrome.options import Options
chrome_options = Options()
chrome_options.add_argument("--headless")
chrome_options.binary_location = '/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary'`
driver = webdriver.Chrome(executable_path=os.path.abspath(“chromedriver"), chrome_options=chrome_options)
driver.get("http://www.duo.com")`
但是,当我使用命令 chromedriver -h 检查 selenium webdriver 的可能参数时,我得到的是:
D:\Jobs\scripts>chromedriver -h
Usage: chromedriver [OPTIONS]
Options
--port=PORT port to listen on
--adb-port=PORT adb server port
--log-path=FILE write server log to file instead of stderr, increases log level to INFO
--log-level=LEVEL set log level: ALL, DEBUG, INFO, WARNING, SEVERE, OFF
--verbose log verbosely (equivalent to --log-level=ALL)
--silent log nothing (equivalent to --log-level=OFF)
--append-log append log file instead of rewriting
--replayable (experimental) log verbosely and don't truncate long strings so that the log can be replayed.
--version print the version number and exit
--url-base base URL path prefix for commands, e.g. wd/url
--whitelisted-ips comma-separated whitelist of remote IP addresses which are allowed to connect to ChromeDriver
没有--headless 选项可用。
谁能对此提供一些澄清?从上面链接获取的chromedriver是否允许无头浏览?
谢谢
【问题讨论】:
-
是的,据我所知,我永远无法在无头模式下运行 Google Chrome。我刚切换到 Firefox。
-
我也可以在 macos 中以无头模式运行。
标签: python-3.x selenium google-chrome selenium-webdriver selenium-chromedriver