The automation of attendance marking , click selectors not working

I am currently doing a project on attendance automation but i cant seem to get my click selectors to work for it, anyone is willing to help?

Check the selector while selecting from the UI, and add an anchor if you can.
If you still face issues, change the input method to “Simulate” or another option.

Input types available at UiPath

I have did a special selector but it doesnt seem to work and i cant seem to send my file for you to see

Hi @Pojin123

Are you able to please share the selector?

Also did you explore the selector using ui explorer to check what other properties are exposed for the element you are trying to click?

String.Format(“”, CurrentRow.Field(Of String)(“NRIC”), dtattendance.ToString())

im using to see from my datatable who is present , mc or al and clicking on it

Can you share screenshot of strict selectors from property panel? Or provide ui explorer screenshot, so that we can understand the problem clearly. Would be good if you share ss of both ui explorer and property panel of click activity. Good luck

@Pojin123

the selector looks proper..

one thing you need not actual use the next td after the nav up as if there is only one input field per roe then webctrl tag=‘input’ should suffice it

so selector would be

table
td
nav
input

also check with static value of aaname first to verify selector and then use variables

now in this one thing to verify is if the value you are sending and aaname are exactly matchign ornnot..becasue even extra spaces or casing difference also can trigger issue in selector

if casing issue then we need to make selector case insensitive (casesensitive:<attribute-name>='false') if spacing issue try to use *..also innertext is reliable than aaname

cheers