Obtenha o nó DOM com XPath
function getElementByXpath(path) {
return document.evaluate(path, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
}
// *** use ***
// getElementByXpath(XpathTargetingDOMNode)
S4N705H