Pega Robotics: How to select radio button that STARTS WITH a given string
Hi,
I'm new to using Pega Robotics and would just like to ask if this is possible to be done in PEGA Robotics.
Basically, there is a radio button and I would like to click the radio button whose value STARTS WITH a specific string. Selecting should NOT be case-sensitive.
For example:
https://www.w3schools.com/html/tryit.asp?filename=tryhtml_input_radio
<form action="/action_page.php">
<input type="radio" name="gender" value="male" checked> Male<br>
<input type="radio" name="gender" value="female"> Female<br>
<input type="radio" name="gender" value="other"> Other<br><br>
<input type="submit">
</form>
I would like to select radio button that STARTS WITH "FE" (upper case) which should click the second radio button.
Is this possible?
Thanks