Getting started with RPA: Installation, basic flows, and publishing
Intermediate | 60 Minutes
Overview
This tutorial will guide you through the complete process of getting started with Infor RPA, from installation through creating your first automated workflow and publishing it for others to use. You'll learn to install RPA Studio and RPA Assistant, create a simple web automation flow that captures screenshots, and publish the flow for distribution. Manual, repetitive tasks like taking screenshots of web pages, downloading files, or filling out forms can consume significant time and are prone to human error. Organizations often need to automate these processes but lack systems with APIs or integration points. Robotic Process Automation (RPA) solves this by simulating human interactions with applications through mouse clicks, keyboard inputs, and screen navigation. This tutorial demonstrates RPA's value by creating a simple automation that opens a web browser, navigates to pages, and saves PDF screenshots automatically - a task that would normally require manual intervention for each execution.
📋 Requirements
|
Tutorial
Best Practices
When creating RPA automations, follow these guidelines:
Error Handling: Always uncheck "Continue on Error" unless you specifically need the automation to proceed despite failures. This ensures problems are caught early rather than cascading through your workflow.
Wait Times: Include appropriate wait times before and after activities, especially when interacting with web pages or applications that need time to load. A general rule is 500-1000 milliseconds for simple actions, longer for page navigation. Descriptive Naming: Use meaningful names for your activities, arguments, and projects. "Click Button 1" is less helpful than "Navigate to Tutorials Page" when troubleshooting or maintaining automations.
XPath Reliability: When possible, use CSS selectors or stable element IDs instead of auto-generated XPaths, as they're more resilient to minor page changes. Test your element selectors thoroughly across different scenarios.
Version Control: Use the versioning feature when publishing updates to existing automations. This allows you to rollback if issues arise and helps track changes over time.
Resources
What made this section unhelpful for you?
On this page
- Getting started with RPA: Installation, basic flows, and publishing




























