In Chrome, loading this webpage
When i digit something in the 'search TextBox', and i inspect the same TextBox element (right click --> inspect):
If i check the properties
I can verify that:
- innerHTML: ""
- innerText: ""
- textContent: ""
- value: "what i digited"
My question is: In general, parsing a webPage in c#/vb.net, Which could be the fastest way to get the 'Input' value? N.B. Not the innerHTML, the innerText, or textContent, i need to get the 'value'.
I tried with Selenium, and i can get it, but it's slow (also with ChromeOptions 'Headless' argument)
I tried with HtmlAgilityPack, that it's fast, but i'm unable to get the input value...
Any help?