basic-navigation Scenario 3 — Take a Full-Page Screenshot
Written by RTILA X Engineering Team
What You'll Learn
Capture a full-page screenshot programmatically
Real-World Use Case
Archiving visual page snapshots for compliance
Screenshot Target
A simple, stable page section used for full-page screenshot capture.
Capture This Entire Page
This page contains multiple content sections that should all appear in the resulting full-page screenshot.
Screenshot Result
Screenshot saved to: screenshot.png (full page, 800px wide minimum)
RTILA X Automation Project
{
"name": "Take_Full_Page_Screenshot",
"settings": {
"urls": [
"https://learn.rtila.com/scenarios/basic-navigation/3"
],
"headless": false,
"navigation_timeout": 30000,
"max_concurrent_workers": 1,
"humanoidEnabled": true,
"humanoidSensitivity": "medium"
},
"datasets": {},
"commands": [
{
"command": "goto",
"params": {
"url": "https://learn.rtila.com/scenarios/basic-navigation/3"
}
},
{
"command": "wait_for_selector",
"params": {
"selector": "css=.screenshot-target"
}
},
{
"command": "screenshot",
"params": {
"path": "screenshot.png",
"fullPage": true
}
}
]
}
RTILA X Concepts
The screenshot command accepts a fullPage parameter. Waiting for a
known selector before capturing ensures the page has finished rendering its
content.
Did you complete this scenario?
Ready to run this automation?
Copy the project JSON above, open RTILA X, create a new project, and paste it.
This scenario covers 1 RTILA X command and is referenced in 1 learning article.
Continue Learning
Was this helpful?
Thank you for your feedback!