> ## Documentation Index
> Fetch the complete documentation index at: https://skyvern.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# scroll

Scroll the page by a given number of pixels along the x and y axes.

```python theme={null}
# Scroll down 500px
await page.scroll(0, 500)
```

| Parameter  | Type  | Required | Description                                                       |
| ---------- | ----- | -------- | ----------------------------------------------------------------- |
| `scroll_x` | `int` | Yes      | Horizontal scroll offset in pixels. Positive values scroll right. |
| `scroll_y` | `int` | Yes      | Vertical scroll offset in pixels. Positive values scroll down.    |

Returns `None`.
