如何从命令行下载带有 Chrome Headless 的网站?

How do I download a website with Chrome Headless from the command line?

我可以使用 Headless Chrome/Chromium 替代 bash 中的 curlwget 吗?

根据 the official post "Getting started with Chrome Headless",您需要 --dump-dom 标志:

chrome --headless --dump-dom <url>

或者如果您在 Linux

上使用 Chromium
chromium-browser --headless --dump-dom <url>

会将页面的 HTML 内容转储到您的终端(即标准输出),就像 curl.

如果您使用 Windows,您可能还需要将 --disable-gpu 传递给这些命令