我试图从谷歌搜索中检索所有链接但没有成功......
我正在使用Selenium + HTML Agility Pack
HtmlDocument doc = new HtmlDocument();
doc.LoadHtml(pageSource);
foreach (HtmlNode link in doc.DocumentNode.SelectNodes("//*[@id='rso']/div/div/div[1]/div/div/h3/a"))
{
string href = link.GetAttributeValue("data-href", string.Empty);
list.Add(href);
}
foreach (var item in list)
{
Console.WriteLine(item);
}
Google HTML
<a href="/url?sa=t&rct=j&q=&esrc=s&source=web&cd=2&cad=rja&uact=8&ved=0ahUKEwizrv_f06TWAhXLD5AKHa4pB1AQFgg3MAE&url=http%3A%2F%2Fwww.rtl.de%2Fcms%2Fdsds-2017-das-sind-die-votingergebnisse-der-14-staffel-4112962.html&usg=AFQjCNF_sFs_fpNAeBAPLitsVZbShMAhiw" onmousedown="return rwt(this,'','','','2','AFQjCNF_sFs_fpNAeBAPLitsVZbShMAhiw','','0ahUKEwizrv_f06TWAhXLD5AKHa4pB1AQFgg3MAE','','',event)" data-href="http://www.rtl.de/cms/dsds-2017-das-sind-die-votingergebnisse-der-14-staffel-4112962.html">DSDS 2017: Das sind die Votingergebnisse der 14. Staffel - RTL.de</a>
我想提取date-href但没有成功
答案 0 :(得分:0)
替换
行string href = link.GetAttributeValue("data-href", string.Empty);
到
string href = link.Attributes("data-href").value;
它可能有用。
答案 1 :(得分:0)
通过这种方式找到所有链接不是问题。
当您将a[@data-href]
添加到XPath
SelectNodes
时,您只会选择包含实际数据网址属性的链接。
所以它会变成:
foreach (HtmlNode link in doc.DocumentNode.SelectNodes("//*[@id='rso']/div/div/div[1]/div/div/h3/a[@data-href]"))
{
string href = link.GetAttributeValue("data-href", string.Empty);
list.Add(href);
}