Skip to main content

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 the page by a given number of pixels along the x and y axes.
# Scroll down 500px
await page.scroll(0, 500)
ParameterTypeRequiredDescription
scroll_xintYesHorizontal scroll offset in pixels. Positive values scroll right.
scroll_yintYesVertical scroll offset in pixels. Positive values scroll down.
Returns None.