I am trying to read html table in order to read and change table with using HtmlAgilityPack. I tried with very different websites but my code does not work.
SelectSingleNode function returns null. Also when I call SelectNodes instead of SelectSingleNode, result is null again.
Example link http://www.uefa.com/livescores/ has a table. How can I read this table?
HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
doc.LoadHtml("http://www.uefa.com/livescores/");
var result = doc.DocumentNode.SelectSingleNode("//table");