Why I can't get the href attribute for the a tag like the code below?
HtmlElementCollection heCol = doc.FindElementsByAttribute("div", "class", "myAwesoneClass", "text")
string postAuthor = heCol.GetByNumber(5).FindChildByAttribute("a", "class", "anotherClass", "text", 0).href;
What would be...