Glossary Term
Full-Page Screenshot
A full-page screenshot captures the entire scrollable length of a page — not just the visible viewport — producing a single image that shows the full layout from top to bottom.
Full-page screenshot vs viewport and scrolling screenshots
These three terms are closely related but describe different things. A viewport screenshot captures only what is visible in the browser window at a specific moment. A scrolling screenshot describes a capture method — the tool scrolls through the page and stitches the result together. A full-page screenshot describes the outcome: one image containing the entire page.
The choice depends on the goal. If the reviewer only needs one section, a viewport screenshot is often enough. If the reviewer needs the structure of the whole page in a single artifact, a full-page screenshot is more useful. The capture method — whether native browser capture or scroll-and-stitch — matters less than whether the output accurately preserves the full page.
Where full-page screenshots are used
Full-page screenshots come up wherever people need comprehensive visual documentation instead of a single visible state:
- Design reviews — reviewing the full layout and ordering of long landing pages or articles
- SEO audits — preserving page structure, content hierarchy, and SERP evidence visually
- QA checks — verifying long pages, templates, or responsive states across breakpoints
- Website archives — creating before/after records of page changes over time
- Client approvals — sharing the entire page as one artifact for asynchronous review
The person asking for a full-page screenshot usually wants comprehensive context, not just the current screen.
How full-page screenshots are created
There are several ways to produce a full-page screenshot:
- Browser DevTools — Chrome, Firefox, and Edge all offer built-in commands that capture the full scrollable page as a single image.
- Scroll-and-stitch tools — some tools scroll through the page automatically and stitch the captured frames into one long image. This is common on mobile and in desktop apps that do not have native full-page capture.
- Automated capture tools — headless browsers and screenshot automation tools can capture full-page results on a schedule or in batch, without manual scrolling. This is useful when full-page captures need to happen regularly across many pages.
Common mistakes with full-page screenshots
- Assuming full-page always means a one-click capture. Some tools produce the result by scrolling and stitching. The important part is whether the output accurately preserves the whole page, not the method used.
- Using full-page when only above-the-fold matters. For some QA checks, a viewport screenshot is more precise because it reflects exactly what a user sees. A full-page capture may add noise instead of clarity.
- Not accounting for lazy-loaded content. Images and sections that load only when scrolled into view may appear blank or missing in a full-page screenshot unless the tool scrolls the page first to trigger loading.
- Expecting identical results across viewport widths. A full-page screenshot taken at 1440px wide will look different from one taken at 375px. The viewport width affects layout, so the capture width should match the intended review context.
Common Questions
Is a full-page screenshot the same as a viewport screenshot?
No. A full-page screenshot captures the whole scrollable page, while a viewport screenshot captures only the portion currently visible on screen.
Is a full-page screenshot the same as a scrolling screenshot?
Not exactly. A full-page screenshot describes the result — one long image. A scrolling screenshot describes the capture method used to produce that result.
How do I take a full-page screenshot in Chrome?
Open DevTools, press Cmd+Shift+P (Mac) or Ctrl+Shift+P (Windows), type 'Capture full size screenshot', and press Enter. The browser saves a PNG of the entire page.
Do full-page screenshots capture lazy-loaded content?
Not always. Content that loads only when scrolled into view may appear blank or missing unless the tool scrolls the page first to trigger loading.
Can I automate full-page screenshots?
Yes. Automated screenshot tools and headless browsers can capture full-page results on a schedule or in batch without manual interaction.
Sources
- Viewport concepts — MDN