I want a way to find that character only

The image shows a table with columns for PO Issue, Supplier, Create Date, and Comments, listing multiple entries all from the same supplier "NGOC LAM WOOD PROCESSING JOINT STOCK CO." with the create date "2024-09-24". (Captioned by AI)

As shown in the picture
AB16
AB14
AB1
AB12

I just want to make it look for ‘AB1’ not contain another words

the click activity and Find Text Position, find the location of ‘AB1’, then convert it into UI elements and click it. If I ask it to find ‘AB1’, it’ll see AB16 that contains AB1.

Is there a way to make sure I can only find only ‘AB1’ that contains nothing?

Hi,

What type application is it, Web application or Desktop application?
Also can you share selector string of the target?

Regards,

It looks like Oracle EBS, one of the Java applets.
Which means that within that grid / table it is hard to click directly based on visible content, since they are not often a possible part of a selector. Same as extract datatable, which does rarely give usable data within this application.

A solution is to loop through all the rows, iterating on the part of the selector that indicates the tablerow. Then get the text of that 1st field, validate it to match AB1 exactly, and then you know in which row all other elements are, on which you can then build your followup selectors.