Example #1
0
        private HtmlAgilityPack.HtmlNode FeatureData(string url)
        {
            string cookieData      = CookieUtil.GetCookies(ConfigManager.uTrackRootUrl);
            string reponseTaskHtml = SpiderUtil.GetHtml(url, cookieData, string.Empty);


            HADocument hadoc = new HADocument();

            hadoc.LoadHtml(reponseTaskHtml);

            HtmlAgilityPack.HtmlNode htmlNode = hadoc.DocumentNode;
            return(htmlNode);
        }