Dynamic selector unable to click

Hi All,

I am having an issue with a dynamic selector:
image

My dynamic selector:
html title=‘Finance Dashboard | ServiceNow’
webctrl parentid=‘pivot_5873b169db22934006593e1f7c9619ce’ tag=‘TABLE’
webctrl tableCol=‘" + (stateNewColumnIndex + 1).ToString() +"’ tableRow=‘“+ (stateNewRowIndex + 2).ToString() +”’ tag=‘TD’

Which outputs:
html title=‘Finance Dashboard | ServiceNow’
webctrl parentid=‘pivot_5873b169db22934006593e1f7c9619ce’ tag=‘TABLE’
webctrl tableCol=‘2’ tableRow=‘3’ tag=‘TD’

This is the selector via UI Explorer:
html title=‘Finance Dashboard | ServiceNow’
webctrl parentid=‘pivot_5873b169db22934006593e1f7c9619ce’ tag=‘TABLE’
webctrl tableCol=‘2’ tableRow=‘3’ tag=‘TD’

As the selector may move depending on the incoming requests, I am unable to make the selector position based. UiPath is able to locate the selector but will not physically click on the selector, please kindly assist.

Are you getting any kind of exception or is the workflow ending normally (even though the click is not happening)?
Is there any deeper element inside the TD, like a SPAN or something like this?
Is there any difference in behavior if you use SimulateClick or SendWindowMessages?

The workflow finds the element and completes the activity as per normal but its not actually clicking on the element.
I have checked the TD and there was a SPAN but only contained an idx, which would be dynamic.
No difference when using SimulateClick or SendWindoMessages.