An open API service indexing awesome lists of open source software.

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

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);