β‘ Quick Start
Welcome to Fuyu β a fast, flexible, and cloud-powered platform for browser automation.
This guide will help you run your first script in just a few steps β no setup, no prior experience required.
π§ͺ 1. Try a Template (Fastest)β
Go to fuyu.gg/scripts/templates and pick a ready-made template.
You can:
- Preview the script logic
- Click "Use This Template" to save it to your account
- Run it immediately
Templates are the easiest way to get started β they showcase real-world use cases like scraping, logging in, and form submissions.
π§βπ» 2. Or Write Your Own Scriptβ
Go to the Scripts page in the dashboard and click New Script. Paste this minimal example:
visit("https://example.com")
wait_for("h1", 5)
title = get_title()
record("title", title)
This script:
- Visits a webpage
- Waits for an
<h1>
element - Reads the page title
- Saves it as output
π 3. Run and Observeβ
Click Run on your script.
Youβll see:
- Live logs and status updates
- Output from
record()
commands - Optionally, a VNC browser preview if test mode is enabled
Jobs are fully cloud-executed β no browser or local setup needed.
π¦ 4. View Your Resultsβ
After the run:
- Go to the Results tab of your script
- View all recorded output
- Export to
.csv
or.json
- Or fetch via API:
GET /api/scripts/:id/results
π Whatβs Next?β
- Browse Templates
- Learn the full Command Reference
- Explore features like:
Need help? Reach out to the team or join our community.
Happy scripting!