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

  1. Navigate to the property page and wait for it to fully load.
  2. Open DevTools: F12 or Ctrl+Shift+I (Win/Linux) / Cmd+Option+I (Mac)
  3. Go to the Inspector tab.
  4. Click the <html> tag at the top of the DOM tree.
  5. Right-click it and choose Copy > Outer HTML.
  6. Paste into the Paste HTML form.

Method 2: Console Command

  1. Open DevTools (see shortcuts above) and go to the Console tab.
  2. 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

  1. Press Ctrl+S (Win/Linux) / Cmd+S (Mac)
  2. In the "Save as type" dropdown, choose "Web Page, HTML only".
  3. 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.