Hi,
I am unable to click on a check box which is before a batch number and i want that it click on only those check box on which bot start doing validation.
I’ve tried Anchor base but it won’t work for me.
ppr
(Peter Preuss)
September 18, 2023, 7:39am
3
In general you can check if a dynamic selector and an integrated anchor approach will fit:
@sumi
have a look on this scenario similar to yours:
[grafik]
we would like to click remove for e.g. Guerra
the webelement structure looks like this:
[grafik]
with the variable in selector we identify the datarow of guerra (Anchoring to the name)
based on this the remove button is found
the selector for click looks like:
<html app='firedox.exe url='*mdbootstrap.com' />
<webctrl parentid='table' tag='BUTTON' rowName='{{selectedName}}' />
sometimes it is needed to anchor it (Name in f…
Hi @subhamsinha055 ,
have you edited default editor and attribute of click activity?
Anil_G
(Anil Gorthi)
September 18, 2023, 11:11am
5
@subhamsinha055
You can try something like this
@Joanna2
Your selector would be something like this…where by incrementing the idx value can loop through each…
<wectrl tag='TABLE' />
<webctrl tag='td' tablecol ='1' innertext='AsOf_1MthAgo' idx='{{indexvar}} />
<nav up='1' />
<webctrl tag='td' tablecol ='6' />
<webctrl tag='A' innertext='View Results />
This can be used as selector…note this is illustration exact one will be similar to this…use ui explorer to find
Idx can be passed as variable starting from 1 and inside loop can use check a…
The idea is use innertext for finding the required batch…and then use nav up…then use the required tablecol value and click on the checkbox
Cheers