For the complete documentation index, see llms.txt. This page is also available as Markdown.

Scroll to top

Scroll to top is an action that instructs the browser to immediately scroll the entire screen back to the original starting position of the webpage. This action operates completely automatically and does not have any accompanying configuration parameters.

🎥 See more tutorial video: Here.

Practical example: Return to the main menu bar after browsing content

When you set up a data scraping or interaction script, the processing flow often pulls the screen down very deep to load more posts (Lazy load) or read comments. After scrolling down, you want to return to the top of the page to click on the search bar, notification panel, or navigation menu fixed at the top:

  • How to apply: Instead of using the Mouse scroll action with negative parameters multiple times (which is time-consuming and difficult to accurately adjust the scroll step), you only need to insert a single Scroll to top action.

  • Result: The browser will execute the command to quickly scroll the screen to the top of the website immediately, allowing the script to be ready for the next actions quickly and accurately.

Last updated

Was this helpful?