jOOX can be used to find the xPath of an element using something like this:\[code\]Element element = (Element) someNode;String xPath = $(element).xpath(); \[/code\]Can I do the same for an attribute? I tried this:\[code\]Attr attr = (Attr) attributeNode;String xPath = $(attr).xpath(); \[/code\]But it returns null.