I need help clicking on “Process”.How do I click on “Process” for account “2162” on the date 10/06/2025? The date is dynamic and defined in a variable.
Try for each ui element in the target table and maybe use Get Attribute activities.
You may need to retrieve the date and perform a few checks based on it. Once you’ve identified the correct UI element, you can extract its selector for the ‘Process’ link. After obtaining the appropriate link selector, you can then update the Click activity’s selector accordingly.
use for each ui elemnt on the row element completely and then use filter or get attribute inside and if condition to check the required element and then use find children to get the actual element and click
second way
generally selector will have a hierarchy and for table elements generally you would have row as one hierarchy..so can use selector refinement and use in click with variables in it
example selector below
<webctrl tag='TR' innertext='*{{Code}}*{{Date}}*' />
<webctrl tag='TD' innertext='Processar' />
cheers
I found the selector. How do I insert the variable into the date?
webctrl id=‘grdIntegracaoBoletos’ tag=‘TABLE’
webctrl tableRow=‘2’ tag=‘A’ onclick=‘ProcessarBoletos('06/10/2025-000-000-2162');’
select the date and right click it would ask to replace with variable..select the variable you need
also use * if you see any dynamic data
cheers
