Scroll Browser Page
browser_scrollScroll web pages by exact pixel amounts to view content below the fold, trigger lazy-loaded images, or reach elements further down. Returns the final scroll position.
Instructions
Scroll the page by pixel amount. Use positive y to scroll down, negative y to scroll up. Examples: scroll down 500px → {y: 500}, scroll up → {y: -500}, scroll to bottom → {y: 99999}, scroll right → {x: 500}. Returns the final scroll position. Useful for viewing content below the fold, triggering lazy-loaded images, or reaching elements further down the page.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| x | No | Horizontal scroll amount in pixels. | |
| y | No | Vertical scroll amount in pixels. | |
| mode | No | Force a specific mode. Defaults to extension. | |
| sessionId | No | Puppeteer session ID for headless mode. Skips mode selection. |