Robotic Automation example: Rewriting the HTML of a web control
This article provides an example of how to rewrite the HTML of a web control by using Pega Robot Studio to change the behavior of the web control. You typically rewrite the HTML of a web control to redirect hyperlinks to other destinations. You can also use this capability to highlight specific controls or to make visible controls that have been hidden by the page.
To rewrite the HTML of a web control, complete the following steps:
- Create a new solution and add a web application.
- Set the StartPage to: http://training.openspan.com/login
- Start interrogation and interrogate the user name text box, the password text box, the Login button, and the information label found at the bottom of the sign in page.
- Add an Element Index match rule to the information label to ensure that it matches uniquely.
- Create a new automation.
- Add the Created event for the information label.
- Add the OuterHtml property for the label.
- Connect the Created event to the OuterHtml property.
- Set the OuterHtml property to: Web Adapter Certification Course.
- Run the solution.
When the system creates the control, its OuterHtml is rewritten. This causes a message box to display when clicked.
Previous topic Robotic Automation example: Integrating a ListView within an application Next topic Robotic Automation example: Selecting all entries in a list box that is on a webpage