Subscribe

UiPath Studio

The UiPath Studio Guide

Example of Automating a Citrix App

To showcase how automating Citrix technologies works, we created a simple automation process which opens the Calculator, interacts with UI elements to perform a simple operation, extracts the result, and then displays it in a message box.

  1. Open the Calculator as explained on this page.
  2. From the Recording menu, select Native Citrix. The Native Citrix Recording wizard is displayed.
  3. Use the Click function on the necessary buttons on the Calculator to perform a simple operation. In this case, we click on 5, +, 9, and =.
  4. Select Copy Text from the Recording Wizard, and click on the Calculator results field.
  5. Click Save & Exit in the Recording Wizard. This adds a Native Citrix container to our automation project, which holds the necessary Click activities, as well as the Get Text activity to retrieve the result.
476
  1. Add a Message Box activity below the Native Citrix container.
  2. In the Text field of the Message Box activity, write something relevant and include the variable delivered by the Get Text activity. In this case, we can write ”The number is ” + TextResult.ToString. Make sure the TextResult variable is in the Sequence scope.
  3. Add a Click activity. Choose to Indicate on screen the location of the Close button on the Calculator.
  4. Press F5 to run the automation. Notice how the Calculator is open, a simple calculus is performed through UI interaction, and the result is copied and displayed in a message box.
1287

Updated 3 years ago

Example of Automating a Citrix App


Suggested Edits are limited on API Reference Pages

You can only suggest edits to Markdown body content, but not to the API spec.