Thursday, December 5, 2019

RPA Uipath Trick



1) Split the string in Uipath with VB.net code.









2) How to write dynamic selector with using variable and wildcards.

1) Adding wildcards characters in selectors
Asterisk (*) – replaces one or more characters
Question mark (?) – replaces a single character

for more info can use this link : https://studio.uipath.com/docs/selectors-with-wildcards

2.Adding variables in selectors : we can keep the dynamic part of the selector as variable
    1) Create variable as  "userID"
    2) Assign value to "userID" variable
    3) replace the attribute value to "userID" variable
<html title='Sign in to your account' /><webctrl aaname='"+ userID +"' parentid='tilesHolder' tag='DIV' />

2 comments: