Use the Start method for Universal App Connector
Use the Start method to launch a browser or an application for the Universal App Connector (UAC) object. You can use this method if you want a browser or application to start before interacting with any application screens or elements.
Before you begin
Role required: None
About this task
Note:
If the application type that you select for the Start method is Google Chrome or Microsoft Edge browser, then the same
browser must be selected from the Browser list in the
Configure screen and elements window of UAC.
Procedure
Start method for Universal App Connector
You have a list of employee salary records in an Excel sheet, and you want your RPA robot to automatically calculate taxes using a public web-based tax calculator. Before the bot can interact with the calculator's UI, it needs to launch the browser and open the specific tax calculator page.
- Use the Data Table connector to import rows from the Excel file.
- Drag a For Each component onto the design surface to iterate over the list of employee salary records.
- Inside the loop:
- Extract fields from the current record.
- Set up the Universal App Connector to open the Chrome browser.
- Use the Start method to launch the browser and navigate to the tax calculator URL:
https://example.com/tax-calculator - Use WaitForAnyScreen or a Wait component to ensure the tax calculator interface is fully loaded and ready.
- Use other UAC methods or UI automation to:
- Enter salary and deduction values from the Excel row.
- Trigger the calculation.
- Capture the calculated tax amount.