Getting Rendered HTML in Firefox
Three reliable ways to copy the fully-rendered HTML from Mozilla Firefox.
"View Page Source" (Ctrl+U / Cmd+U) shows the server HTML, not the JS-rendered DOM.
Don't use it — on modern sites it will be an empty shell. Use one of the methods below instead.
Recommended
Method 1: Inspector — Copy Outer HTML
- Navigate to the property page and wait for it to fully load.
- Open DevTools: F12 or Ctrl+Shift+I (Win/Linux) / Cmd+Option+I (Mac)
- Go to the Inspector tab.
- Click the
<html>tag at the top of the DOM tree. - Right-click it and choose Copy > Outer HTML.
- Paste into the Paste HTML form.
Method 2: Console Command
- Open DevTools (see shortcuts above) and go to the Console tab.
- Type the following and press Enter:
copy(document.documentElement.outerHTML) The full rendered HTML is now on your clipboard. Paste it into the extract form.
Method 3: Save Page
- Press Ctrl+S (Win/Linux) / Cmd+S (Mac)
- In the "Save as type" dropdown, choose "Web Page, HTML only".
- Save the file, then upload it via the Upload File form.
Reader View (Not Recommended)
Firefox's Reader/Simplified View strips out most page elements.
It's great for reading articles but will remove property data like images, maps, and structured fields.
Don't use Reader View as a source for extraction.