I want to read a web page by this library but some page has a script that in first level run script ( for example Welcome or site is loading or … ) then in second level show page content. And in this page this library I access just the first level.
string linkUrl = "yoursite.come";
var doc = new HtmlWeb().Load(linkUrl);
var pTags = doc.DocumentNode.Descendants("p").Select(el => el.InnerText)
.Where(u => !String.IsNullOrEmpty(u.ToString()));
// Any Code about pTags
As Html Agility Pack don't support JavaScript so you need to use alternative libraries that have JavaScript support.
these libraries can help you solve your issue.