Skip to content

Instantly share code, notes, and snippets.

@moskalukigor
Created May 7, 2022 09:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moskalukigor/fe4b990158d9c33f116c222c21fe1731 to your computer and use it in GitHub Desktop.
Save moskalukigor/fe4b990158d9c33f116c222c21fe1731 to your computer and use it in GitHub Desktop.
Javascript search by xpath
function getElementByXpath(path) {
return document.evaluate(path, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
}
console.log( getElementByXpath("//html[1]/body[1]/div[1]") );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment