XPath value finder
Last updated
Last updated
[html/XPath value finder]
Retrieve html element values from the given document.
Keywords: html, xml, xpath
document: string
The HTML document as string we'd like run xpath queries on. Example:
query: string
Receives the XPath expression to select nodes or node-sets in the documment. More: https://www.w3schools.com/xml/xpath_syntax.asp Example: "//div[@id='maindiv']"
values: string[]
Values of the nodes matching the specified query. Example: ["Content"]
error: {"error": string}
Sends the error, if any.