Web Scraper Test Website

Full Height Test Page (5000px)

This page demonstrates a container with a specific height for testing the full_size parameter.

Page Information

The container below has the exact height specified in the URL. It includes height markers every 1000px to help verify the screenshot captures the full height.

TOP - 0px
BOTTOM - 5000px

Testing Instructions

When testing the screenshot service with this page:

  1. First take a screenshot with full_size: false (default) to see only the viewport portion.
  2. Then set full_size: true to capture the entire page height.
  3. Verify that the screenshot includes all height markers when full_size is enabled.
  4. Test with different max_height values to see how it affects very tall pages.

Sample API Requests:

POST /v1.0/screenshot
{
  "url": "http://localhost:8000/full-height/5000",
  "width": 1024,
  "height": 768,
  "format": "png"
}
POST /v1.0/screenshot
{
  "url": "http://localhost:8000/full-height/5000",
  "width": 1024,
  "height": 768,
  "format": "png",
  "full_size": true
}
POST /v1.0/screenshot
{
  "url": "http://localhost:8000/full-height/5000",
  "width": 1024,
  "height": 768,
  "format": "png",
  "full_size": true,
  "max_height": 10000
}

Other Full Height Tests