I’m a newcomer here with UiPath, although started creating a bots.
The difficulty I’m facing is how do I select a dynamic date in a web calendar. The date value is stored in a variable which comes from an excel file. I’ve tried passing the variable name in selector, but it did not selected the date that i wanted to. Please help me with this.
Remove the selector from the click activity
copy the below selector and paste it in the selector properties "<html title='ACME System 1*' /><webctrl css-selector='body>div>div>div>table>tbody>tr' tag='TR' aaname='"+selec.ToString()"Process Vendor invoice*' /><webctrl tag='I' idx='1' />"
My requirement is i have a datatable in web application in which i have to click on the particular item based on a condition
so in the click activity i made the selector dynamic by taking leverage on the aaname which is unique for each item
Try this one @KiruthikaVenkatesan, Copy the below selector and paste it into selector properties "<html title='ACME System 1 - Work Items' /><webctrl tag='TR' aaname='*"+selec.ToString()+"Process Vendor Invoice*' /><webctrl tag='BUTTON' idx='1' />"