I'm reading the content of some web pages and I got problem with one of them which updates some values using jquery. Is there any way to read the content with a little waiting on that page?
I'm currently using HtmlAgilityPack
to fetch web page contents.
HtmlWeb web = new HtmlWeb();
HtmlDocument doc = web.Load(myUrl);
var data = doc.DocumentNode.SelectSingleNode("SOME-SELECTOR")?.InnerText.ToString();
Tried to use BrowserDelay
but it's not really working for me.
web.BrowserDelay = new TimeSpan(0, 0, 5);