Hi @PA_RevCycle
Here’s how you can achieve the same functionality in Automation Anywhere A360 for clicking on a “variable text” on a webpage, similar to UiPath’s “Find OCR” activity:
Solution Using Recorder→ Capture and DOM XPath
-
Recorder Action:
- Open the Recorder action in Automation Anywhere A360.
- Navigate to the webpage where the variable text appears.
-
Capture Action:
- Use the Capture action within the Recorder to select the element containing the variable text.
- Ensure that the Capture action is set to recognize the element based on its properties.
-
DOM XPath:
- In the Capture action, switch to the DOM XPath option.
- Specify a relative XPath that targets the variable text. This XPath should be dynamic enough to locate the text even if its position changes on the page.
-
Variable Handling:
- Store the XPath in a variable if needed. This allows you to dynamically adjust the XPath during runtime if necessary.
-
Click Action:
- Use the Click action to interact with the element identified by the XPath.
- Ensure that the Click action is configured to use the XPath stored in the variable.
Example Workflow
-
Recorder:
- Start the Recorder and navigate to the target webpage.
-
Capture:
- Capture the element containing the variable text.
- Switch to DOM XPath and specify the relative XPath.
-
Store XPath:
- Store the XPath in a variable (e.g.,
XPathVariable
).
-
Click:
- Use the Click action to click on the element using the XPath stored in
XPathVariable
.
Sample Steps in Automation Anywhere A360
1. Recorder: Navigate to the webpage.
2. Capture: Select the element and specify the relative XPath.
3. Variable: Store the XPath in a variable (XPathVariable).
4. Click: Use the Click action to click on the element using XPathVariable.
This approach ensures that your automation can handle dynamic web elements effectively, similar to UiPath’s “Find OCR” activity. If these steps help you resolve the problem, please mark it as answered. If you need further assistance or have other questions, feel free to ask!