There are no items in your cart
Add More
Add More
Item Details | Price |
---|
In today’s fast-paced digital world, automating repetitive tasks is not just a luxury—it’s a necessity. Robotic Process Automation (RPA) tools make it easy to boost productivity by automating mundane processes. One such user-friendly and versatile tool is UI.Vision RPA. Whether you're an individual trying to save time or a business looking to scale automation, UI.Vision offers an accessible and effective solution.
In this blog, we'll explore what UI.Vision RPA is, its key features, and how you can get started automating your tasks—plus a real-world example of using UI.Vision for Real-Time Management (RTM) in Workforce Management.
UI.Vision RPA (formerly Kantu) is an open-source RPA software that allows you to automate repetitive tasks on your desktop and browser. It combines Selenium-like web automation, desktop automation, and OCR (Optical Character Recognition) in a single package.
As a Real-Time Analyst (RTA), you need to pull live reports from your WFM or CRM system (like Genesys, NICE, Avaya, or a custom dashboard) every 30 minutes. These reports might include agent adherence, call queue stats, or service levels. Manually refreshing, downloading, and saving these reports can be tedious and error-prone.
With UI.Vision RPA, you can automate the entire process of:
Automate downloading the "Agent Adherence Report" from a browser-based WFM dashboard.
In the Commands tab, you can tweak the steps as needed.
{ "Name": "RTM_Report_Download", "CreationDate": "2025-03-16", "Commands": [ { "Command": "open", "Target": "https://your-wfm-dashboard.com/login", "Value": "" }, { "Command": "type", "Target": "id=username", "Value": "YourUsername" }, { "Command": "type", "Target": "id=password", "Value": "YourPassword" }, { "Command": "clickAndWait", "Target": "id=loginBtn", "Value": "" }, { "Command": "clickAndWait", "Target": "link=Reports", "Value": "" }, { "Command": "clickAndWait", "Target": "link=Real-Time Adherence", "Value": "" }, { "Command": "select", "Target": "id=teamDropdown", "Value": "label=XYZ Team" }, { "Command": "clickAndWait", "Target": "id=exportButton", "Value": "" }, { "Command": "pause", "Target": "5000", "Value": "" }, { "Command": "echo", "Target": "Report downloaded successfully", "Value": "green" } ] }
If you want to rename the report file with a timestamp, you can use XModules and an external script like Python or a Batch file.
rename "Adherence_Report.csv" "Adherence_Report_%DATE%.csv"
import os import time timestamp = time.strftime("%Y%m%d-%H%M%S") os.rename("C:/Downloads/Adherence_Report.csv", f"C:/Reports/Adherence_Report_{timestamp}.csv")
Example command line to run the macro every 30 mins:
"C:\Program Files\Google\Chrome\Application\chrome.exe" "file:///C:/path-to/ui.vision.html?macro=RTM_Report_Download&close=1"
After downloading the report, you can automatically email it using PowerShell, Python, or even integrate with Outlook automation.
Send-MailMessage -From "rta@yourcompany.com" -To "supervisor@yourcompany.com" -Subject "RTM Report" -Body "Attached is the latest adherence report." -Attachments "C:\Reports\Adherence_Report_20250316.csv" -SmtpServer "smtp.yourcompany.com"
Automating Real-Time Management (RTM) report extraction using UI.Vision RPA is a game-changer for Workforce Management teams. Instead of spending hours manually gathering data, you can focus on proactive monitoring and optimization.
UI.Vision’s simplicity and power make it an excellent RPA tool, whether you’re pulling adherence reports, monitoring SLAs, or preparing hourly performance dashboards.
If you’re eager to deepen your knowledge on this topic, we invite you to explore our courses.
Ritesh Parswani
Seasoned WFM professional | Co-Founder WFM eLearning