XPath select's in HTMLAgilityPack don't work as expected
I'm writing simple screen scraping program in C#, for which i need to select all input's placed inside of one single form named "aspnetForm"(there is 2 forms on the page, and i don't want input's from another), and all inputs in this form placed inside different tables, div's, or just at first-child-level of this form. So i written really simple XPath query: //form[@id='aspnetForm']//input It's works as expected in all browsers that i tested(Chrome, IE, Firefox) - it returns what i want. But in HTMLAgilityPack it's not work at all - SelectNodes just always return NULL. This queries i've