DEV Community

Renee Lin
Renee Lin

Posted on

I automated my daily browser tasks without writing a single line of code

Every day I was doing the same thing: log into a dashboard, copy data, paste it somewhere else, click through 10 pages, fill the same form again.

It's not hard work. It's just boring, repetitive, and takes forever.

I tried writing scripts, but maintaining Selenium code for simple tasks felt like overkill. I tried no-code tools, but they all required cloud accounts and my data had to

leave my computer.

So I built Flyto2 — an open source tool that automates browser tasks by recording what you do.

## How it works

  1. Open Flyto2 and hit Record
  2. Do your task — click, type, navigate, fill forms
  3. Stop recording — Flyto2 remembers every step
  4. Replay anytime — with different data, in batch, or on a schedule

That's it. No code. No cloud. Everything runs on your computer.

## What makes it different

Most automation tools have two modes: running or done. If something goes wrong halfway through 500 items, you don't know until it's too late.

Flyto2 lets you:

  • Run 1 item first — check if it's correct
  • Then run a batch — catch problems early
  • Pause at any step — verify before continuing
  • Go back and fix — no need to start over

Every step is recorded with screenshots and timing. When something fails, you see exactly which step and why.

## 384+ built-in actions

Not just browser automation. Flyto2 has built-in modules for:

  • 🌐 Browser: click, type, fill forms, screenshots, PDF export
  • 📁 Files: read, write, copy, move, convert
  • 🔗 API: HTTP requests, webhooks, JSON/XML/CSV
  • 🗄 Database: PostgreSQL, MySQL, SQLite
  • 🤖 AI: OpenAI, Anthropic, HuggingFace
  • 📧 Email: IMAP read, SMTP send

## Try it now


bash                                                                                                                                                                       
  pip install flyto-core[browser] && playwright install chromium  
  flyto recipe screenshot --url https://example.com                                                                                                                             

  Or download the desktop app: https://flyto2.com                                                                                                                               

  Links                                                                                                                                                                         

  - 🌐 Website: https://flyto2.com
  - 📦 GitHub: https://github.com/flytohub/flyto-core
  - 🎬 YouTube: https://www.youtube.com/@Flyto2                                                                                                                                 
  - 📖 Docs: https://docs.flyto2.com                                                                                                                                            

  It's free, open source (Apache 2.0), and works 100% offline.                                                                                                                  

  What repetitive browser tasks would you automate first?
Enter fullscreen mode Exit fullscreen mode

Top comments (0)