I have an input like this :
<input type="hidden" name="myname" id="myid" value='myvalue' />
How can I get myvalue from this input using HTML Agility pack?
I'm using C# and HTML Agility pack. I tried this :
var latlon = mydetails.DocumentNode.QuerySelector("#myname").QuerySelector("input");
But this didn't work. Thanks.