Is it possible to get a valid selector if you remove ID attribute?
just check removing the “ID” attribute and see if is identifying the same control uniquely, if not check if you can add another attribute(not ID) to make it unique enough to identify the control.
once identified, use “Get Attribute” to fetch the ID and match it with regex to confirm(if required).
In short, you need to refine your selector to see which attributes would work even if you remove the ID attribute.
Regards
SG.