Overview of TagUI RPA capabilities
masterTagUI is a free, open-source, cross-platform Robotic Process Automation (RPA) tool designed to automate desktop, web, mouse, and keyboard actions. It supports multiple ways to identify and interact with UI elements:
- Web Identifiers: Using URLs and text-based commands (e.g.,
click Log in). - Image Recognition: Using images of UI elements to perform actions (e.g.,
click login_button.png). - Coordinate-based Interaction: Using (x, y) screen coordinates (e.g.,
click (720,500)).
// Example: Web identifier
https://login.xero.com/identity/user/login
type email as user@gmail.com
type password as 12345678
click Log in
// Example: Image recognition
type email_box.png as user@gmail.com
type password_box.png as 12345678
click login_button.png
// Example: Coordinate-based
type (720,400) as user@gmail.com
type (720,440) as 12345678
click (720,500)