為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

Equivalent command for google-chrome --headless --dump-dom URL?

  • 2 回覆
  • 1 有這個問題
  • 6 次檢視
  • 最近回覆由 Culip

more options

I want to download a dynamically generated webpage. I don't think cURL, wget or Invoke-WebRequest command can do it.

In Google Chrome, the command below works:

$ google-chrome --headless --dump-dom https://foo.com > ./foo.html

Does the Firefox command-line mode have an equivalent tool?


So far I have checked

I want to download a dynamically generated webpage. I don't think cURL, wget or Invoke-WebRequest command can do it. In Google Chrome, the command below works: $ google-chrome --headless --dump-dom https://foo.com > ./foo.html Does the Firefox command-line mode have an equivalent tool? So far I have checked * https://developers.google.com/web/updates/2017/04/headless-chrome * https://developer.mozilla.org/en-US/docs/Mozilla/Command_Line_Options * https://developer.mozilla.org/en-US/docs/Mozilla/Firefox/Headless_mode

由 Culip 於 修改

所有回覆 (2)

more options

Maybe selecting the full web page (Ctrl+A) and using "View Selection Source" in the right-click context menu works to get the page source. You probably need to disable syntax highlighting to get clean page code.

You can also try the Inspector and select the HTML element and use "Copy > Outer HTML".

more options

cor-el said

Maybe selecting the full web page (Ctrl+A) and using "View Selection Source" in the right-click context menu works to get the page source.

No. See the question: I am asking about "the Firefox command-line mode" not the GUI. I want to call the firefox command from some scripts (Bash, PowerShell Core or Python) that read a list of URLs and download target contents in a batch process.

由 Culip 於 修改