When trying to Identify an object with inner text "A" The below regex works (1) and the (2) is not working

<webctrl tableRow=‘1’ title=‘S C D’ tag=‘SPAN’ innertext=‘A|B’ matching:innertext=‘Regex’ parentclass=‘th-tree-desc’

<webctrl tableRow=‘1’ title=‘S C D’ tag=‘SPAN’ innertext=‘B|A’ matching:innertext=‘Regex’ parentclass=‘th-tree-desc’

Hi @Thinakar_Angappan

What is RegularExpressions you are using?

Regards

@Thinakar_Angappan

Can you try to validate both and show…

Ideally it should be working

Cheers

SyntaxEditor Code Snippet

<webctrl tableRow=‘1’ title=‘Subscription Contract Document’ tag=‘SPAN’ innertext=‘ZContr: *|Sub Item’ matching:innertext=‘regex’ parentclass=‘th-tree-desc’ /

Hi.

It seems wildcard and regex are mixed. How about the following?

<webctrl tableRow='1' title='Subscription Contract Document' tag='SPAN' innertext='Z.*Contr.*:.*|Sub Item' matching:innertext='regex' parentclass='th-tree-desc' />

Regards.