Tutorials
These tutorials are a path, not a menu. Each one is short — ten to fifteen minutes — and each teaches exactly one idea, building on the one before it. Work through them in order and by the end you will understand not just which buttons to press, but why RPA flows are shaped the way they are.
Tutorials 4 and 5 are built on real templates from the library, so you can import the finished flow and compare it against your own. The library is in the Designer under Start with an example, or at robomotion.io/templates.
Before you start
You need a workspace and a connected robot. If you do not have those yet:
The path
| # | Tutorial | The idea it teaches |
|---|---|---|
| 1 | Your first flow | What a flow, a node and a robot actually are |
| 2 | Passing data between nodes | The message object — the one concept everything else rests on |
| 3 | Making decisions | Branching, so a flow can react to what it finds |
| 4 | Repeating work | Loops, and why RPA pays off at volume |
| 5 | Handling failure | Try/Catch — the difference between a demo and production |
| 6 | Working with Excel data | Reading a spreadsheet into a flow |
| 7 | Automating a browser | Selectors, and the Inspect tool |
Worked examples
The path teaches one idea per tutorial. These put several together to do a real job, and each one is a complete flow you build from an empty canvas.
| Example | What you end up with |
|---|---|
| Stock prices into Excel | Reads symbols from a spreadsheet, looks up each price in a browser, writes it back |
| Convert currency in a browser | Asks for an amount, scrapes the conversion off a search page, shows the result |
| Write a CSV file | Builds a table in code and writes it out |
| Post a message to Discord | A bot that posts to a channel, with its token kept in a vault |
What is RPA, in one paragraph
Robotic Process Automation is software that operates other software the way a person does. Instead of asking a vendor for an API, a robot opens the application, clicks the button, reads the screen and types the value — so it can automate systems that were never designed to be automated. Robomotion adds two things to that: a visual flow so the sequence is something you can see and reason about, and AI nodes so steps that need judgement rather than rules can be handled too.
The seven tutorials in the path are, in order, the smallest set of ideas you need to build that yourself. The worked examples are what those ideas look like once they are doing something useful.
Your first flow
Ten minutes. You will build a flow that asks a web service for your public IP address
Passing data between nodes
Ten minutes. You will read a text file from disk and display its contents. Along the
Making decisions
Twelve minutes. You will build a health check that calls an API and reports something
Repeating work
Twelve minutes. So far each flow has done one thing once. This one does the same thing
Handling failure
Twelve minutes. Everything so far assumed things go right. They will not: the site will
Working with Excel data
Ten minutes. Every previous tutorial moved single values around. Real business automation
Automating a browser
Fifteen minutes. The last core skill, and the one most real RPA work needs: driving a
Worked examples
4 items