使用HtmlAgilityPack,验证网页上的元素是否存在

时间:2013-07-24 20:32:04

标签: c# html-agility-pack dom

假设我正在使用http://google.com,并且我想验证页面上是否存在id="hplogo"的元素(存在,它是Google徽标)。

我想使用HtmlAgilityPack,所以我写了这样的东西:

    HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
    doc.LoadHtml("http://google.com");
    var foo = (from bar in doc.DocumentNode.DescendantNodes()
               where bar.GetAttributeValue("id", null) == "hplogo"
               select bar).FirstOrDefault();
    if (foo == null)
    {
        HasSucceeded = 1;
        MessageBox.Show("not there");
    }
    else
    {
        MessageBox.Show("it's there");
    }
    return HasSucceeded;
}

哪个应该返回“它在那里”的消息,因为它在那里。但事实并非如此。我做错了什么?

1 个答案:

答案 0 :(得分:3)

方法LoadHtml(html)加载字符串,其中包含用于解析的html内容。这不是要加载的资源的URL。因此,您正在加载字符串"http://google.com"并尝试在其中查找徽标。这当然会给你没有结果。

您可以使用WebClient下载资源内容:

WebClient client = new WebClient();
string html = client.DownloadString("http://google.com");
HtmlDocument doc = new HtmlDocument();
doc.LoadHtml(html);