https://github.com/fernando24164/xpathfinder
A javascript class that finds elements inside webpages
https://github.com/fernando24164/xpathfinder
Last synced: 3 months ago
JSON representation
A javascript class that finds elements inside webpages
- Host: GitHub
- URL: https://github.com/fernando24164/xpathfinder
- Owner: fernando24164
- Created: 2015-07-19T16:47:05.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-07-27T23:08:02.000Z (almost 10 years ago)
- Last Synced: 2025-01-28T02:44:22.086Z (5 months ago)
- Language: JavaScript
- Size: 121 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#xpathFinder
Class for get xPath of an element.
##Example
var a = document.getElementById("elemento");
var b = xpathFinder.getXPath(a);
console.log(b);
var referenceElement = xpathFinder.getNodeFromXpath(b);