I was trying to select the highlighted Xpath in this Photo below. Afterwards I was trying to click on the element.
Code trials:
On Error Resume Next
Set Element = GC.FindElementByXPath("//*a[@data-id='_VIEW--ALL_COMPLAINTS_VIEW_P']")
Set Element1 = GC.FindElementByXPath("//*/div/a[contains(@data-id,'_VIEW--ALL_COMPLAINTS_VIEW_P')]]")
test = Element1.Value
Element.Click
Element1.Click
Set Element3 = GC.FindElementByCss("a[data-id='_VIEW--OPEN_BY_CODE_P']")
Element3.Click
GC.FindElementById("_VIEW--OPEN_BY_CODE_P").Click
But on both tryouts I wasn't able to do it. First Element is Empty second Element not.
The element is at the bottom and is the blue highlighted line.
PS: I hoped there is some unknown thing like an Iframe which you can solve by switch to. Perhaps this "<!--->".
HTML Snapshot: