Capture guides
How to Screenshot an Entire Web Page on Any Device
June 17, 2026 · 5 min read · Grabbit Team
Full-page screenshots are straightforward on desktop but awkward on mobile, and totally different again when you need them from code. This guide covers the real methods for each situation so you can pick the right one.
The quickest cross-device method
If you are writing code, running a CI job, or building a tool that needs to capture pages from a server or agent, a screenshot API is the only method that works everywhere. The browser runs in the cloud, not on your device.
curl https://api.grabbit.live/v1/grabs \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com",
"width": 1280,
"full_page": true,
"format": "webp"
}'
Setting full_page: true tells the renderer to scroll to the bottom of the page and stitch all the sections into one image. The response contains a hosted image_url you can write directly to your database or pass to a front end. No browser install, no Puppeteer, no scrolling logic to maintain.
For a broader look at programmatic capture, see how to screenshot a website from a URL.
On desktop: Chrome DevTools
Chrome includes a full-page screenshot command that requires no extensions.
- Open DevTools:
F12on Windows or Linux,Cmd + Opt + Ion Mac. - Open the command palette:
Ctrl + Shift + Pon Windows,Cmd + Shift + Pon Mac. - Type
full size screenshotand press Enter. - Chrome saves a PNG of the full page to your Downloads folder.
The capture uses the same Chromium engine as most screenshot APIs, so the result looks accurate. The limitation is that it only works from a desktop browser and cannot be scripted. For more detail on this method, see how to capture a full-page screenshot in Chrome.
On desktop: Firefox
Firefox exposes its screenshot tool without DevTools.
- Right-click anywhere on the page and choose Take Screenshot.
- Click Save full page.
- Firefox downloads a PNG of the entire scrollable page.
No keyboard shortcuts to remember and no extensions needed. The output is always PNG.
On Mac: Safari
Safari has no native full-page screenshot shortcut. Your options are:
- Use Chrome on the same machine (the DevTools method above).
- Install a browser extension such as GoFullPage or Nimbus Capture.
- Use
Cmd + Shift + 4to capture the visible area, then scroll and repeat (tedious and imprecise).
If Safari is a hard requirement, a browser extension or the API is the path of least resistance.
On Windows: built-in tools
The Windows Snipping Tool (Win + Shift + S) captures the visible viewport only. There is no built-in way to scroll and stitch from the OS level. Use the Chrome DevTools method or a browser extension to get the full page.
On iPhone (iOS)
iOS 13 and later include a built-in full-page screenshot option inside Safari.
- Take a regular screenshot: Side button + Volume Up on Face ID iPhones, or Home + Power on older models.
- Tap the thumbnail that appears in the lower-left corner.
- Tap Full Page at the top of the edit view.
- Tap Done and save to Files.
Two things to know: the capture is saved as a PDF, not a PNG or WebP, and this only works in Safari, not Chrome or Firefox on iOS. If you need an actual image file, use a browser extension or the API.
On Android
Android does not have a single universal answer here.
- Samsung Galaxy: Take a screenshot normally (Power + Volume Down), then tap Scroll capture in the overlay that appears at the bottom. Samsung stitches the scrolled sections automatically into one image.
- Google Pixel and most stock Android: No built-in scrolling screenshot. The closest native option is Share > Print > Save as PDF in Chrome, which has the same PDF limitation as iOS.
- All Android browsers: Several extensions for Chrome on Android (such as GoFullPage) add a one-tap full-page screenshot. This is the practical choice on non-Samsung devices.
Choosing the right method
| Situation | Best method |
|---|---|
| Desktop, one-off manual capture | Chrome DevTools |
| Desktop, Firefox user | Firefox right-click > Save full page |
| iPhone, one-off | iOS Safari full page (saves as PDF) |
| Samsung Android | Scroll capture in the screenshot overlay |
| Other Android | Browser extension |
| Server, script, or CI | Screenshot API (full_page: true) |
| Mobile device, need an image file | Screenshot API |
| AI agent or automated workflow | Screenshot API |
The pattern that works everywhere and in every format: the API. Native browser tools are fine for manual one-off captures but differ by platform, change with browser updates, and cannot be automated.
Wrapping up
Chrome DevTools and Firefox cover desktop. iOS gives you full pages but only as PDFs in Safari. Android is split: Samsung has scrolling capture built in, everyone else needs an extension. For anything automated, cross-device, or outside a desktop browser, a screenshot API with full_page: true is the consistent answer. Start capturing full pages programmatically with Grabbit's screenshot API.
FAQ
- How do I take a full-page screenshot in Chrome?
- Open DevTools with F12 (or Cmd+Opt+I on Mac), press Ctrl+Shift+P (or Cmd+Shift+P), type 'full size screenshot', and press Enter. Chrome saves the entire page as a PNG to your Downloads folder.
- How do I screenshot an entire webpage on iPhone?
- In Safari on iOS 13 or later, take a normal screenshot (Side button plus Volume Up), then tap the preview thumbnail and choose 'Full Page'. The capture saves as a PDF to Files, not the Photos app.
- How do I take a full-page screenshot on Android?
- Samsung Galaxy phones show a 'Scroll capture' button after a normal screenshot. On stock Android or Chrome, there is no built-in option: use a browser extension or a screenshot API with full_page set to true.
- How do I screenshot a webpage without scrolling?
- A screenshot API is the cleanest answer. Pass full_page: true and the renderer scrolls and stitches the page for you. Chrome DevTools has a 'Capture full size screenshot' command that also works without manual scrolling on desktop.
- Can I screenshot a full page from a script or CI pipeline?
- Yes. POST to /api/v1/grabs with the URL and full_page: true. The API returns a hosted image URL you can store, display, or diff against a baseline. It runs on a real browser in the cloud, so it works from any machine or pipeline.
Capture any website with one API call
Get a free test key and capture your first screenshot in two minutes.
Written by
Grabbit Team
Screenshots as a service
The team behind Grabbit, the screenshot API for developers and AI agents. We write about web capture, rendering, and automating screenshots at scale.
Keep reading

How to Take a Full-Page Screenshot (Every Method That Works in 2026)
How to take a full-page screenshot on Chrome, Firefox, Edge, Windows, Mac, iPhone, and Android, plus how to capture full pages automatically with an API.
Jun 10, 2026 · 4 min read

How to Capture a Full-Page Screenshot in Google Chrome
Capture a full-page screenshot in Chrome with built-in DevTools, no extension required. Plus the keyboard shortcut, the extension route, and how to automate it for many pages.
Jun 13, 2026 · 4 min read
How to Screenshot a Website from a URL (No Browser Needed)
Skip the headless browser setup. Learn the three ways to capture a screenshot from a URL, and when a screenshot API beats Puppeteer or Playwright for production workloads.
Jun 15, 2026 · 5 min read