How can I select, via xpath, all input elements in a document that have a given value typed into them.
For instance, if I go to Google and type in "hello world", how do I get all input tags that have "hello world" typed into them?
Playing around with things like below haven't paid off, since the value in the text field isn't really part of the document.
document.evaluate("//input[text() = 'hello world']", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue
Should be pretty simple, but I'm surprisingly stuck.