使用HtmlAgilityPack抓取Google不会输出任何结果?

时间:2019-05-07 04:30:10

标签: c#

我有一些用C#编写的代码,该代码抓取了Google并试图在span类中找到一个句子。我一直在尝试输出结果,但是运行代码时控制台中什么也没有。这是代码:

HtmlWeb web = new HtmlWeb();
HtmlDocument document = web.Load("https://www.google.com/search?q=hashmap+in+java");
string meaning = document.DocumentNode.SelectSingleNode("//*[@id='rso']/div[1]/div/div[1]/div/div[1]/div[2]/div[2]/div/span[1]").InnerText;
Console.WriteLine(meaning);

我在SelectSingleNode内部使用Xpath,因为使用//span[@class='']也不起作用。尝试Xpath也没有结果。

enter image description here

这是我想要的句子(在框内),不幸的是我没有运气。任何帮助将不胜感激。

0 个答案:

没有答案