I'm trying to get an attribute of the small arrow next to 'Date' that is shown in the pic:
I used Katalon recorder to find the element's xpath address, and it gave me the following xpath:
"//div[5]/sort-direction/iron-icon[2]"
But this xpath is not enough, because I need the "d" attribute which is inside the 'path' tag (as you can see in the pic).
I tried to modify the xpath like this :
"//div[5]/sort-direction/iron-icon[2]/svg/g/path"
But then I got an NoSuchElementException
exception.
Any ideas of how to get this attribute?