Skip to main content

⚑ 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?​


Need help? Reach out to the team or join our community.

Happy scripting!