mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-05-02 21:50:20 +00:00
18 lines
499 B
Text
18 lines
499 B
Text
---
|
|
title: scroll
|
|
slug: sdk-reference/browser-automation/scroll
|
|
---
|
|
|
|
Scroll the page by a given number of pixels along the x and y axes.
|
|
|
|
```python
|
|
# 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`.
|