我试图获取网页中的所有节点。 我已经多次重新检查XPATH字符串,但仍然没有结果: 我尝试使用以下代码:
string publicatiom = "WO2007000010";
string Check_URL = @"http://patentscope.wipo.int/search/en/detail.jsf?docId=" publication + "&tab=PCTDocuments";
var baseUrl = new Uri(Check_URL);
HtmlWeb hw = new HtmlWeb();
HtmlAgilityPack.HtmlDocument doc = hw.Load(baseUrl.ToString());
string checkstring = "*//[@id='detailMainForm:j_idt1375:0:j_idt1394']";
HtmlNodeCollection Nodes = doc.DocumentNode.SelectNodes(checkstring);
但是,它会返回运行时错误。
答案 0 :(得分:0)
string checkstring =“// * [@ id ='detailMainForm:j_idt1375:0:j_idt1394']”;