get XPATH for all the nodes
is there any library that can give me XPATH for all the nodes in HTML page Yes, if this HTML page is a well-formed XML document. Depending on what you understand by “node”… //* selects all the elements in the document. /descendant-or-self::node() selects all elements, text nodes, processing instructions, comment nodes, and the root node … Read more