Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

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

  • 2 antwoorden
  • 1 heeft dit probleem
  • 3 weergaven
  • Laatste antwoord van 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

Bewerkt door Culip op

Alle antwoorden (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.

Bewerkt door Culip op