How do I select an element for e.g. textbox if I don't know its id?...If I know its id then I can simply write:...HtmlAgilityPack.HtmlNode node = doc.GetElementbyId(id);
...But I don't know textbox's ID and I can't find GetElementsByTagName method in Html...