I'm following the answer given here: https://stackoverflow.com/a/18066671
string Url = "http://www.owgr.com/ranking";
HtmlWeb web = new HtmlWeb();
HtmlDocument doc = web.Load(Url);
string worldRanking = doc.DocumentNode.SelectNodes("//*[@id=\"ranking_table\"]/div[2]/table/tbody/tr[1]/td[1]")[0].InnerText;
But the Xpath is returning a null reference. I've tried several variations but nothing's working, I've never used XPath before, am I missing something?