我正在尝试创建一个抓取工具,从供应商网站中提取一些我可以针对内部属性数据库进行审核的属性数据,并且是import.io的新手。我观看了一堆视频,但虽然我的语法似乎是正确的,但我的手动xpath覆盖不会返回属性值。我有以下示例HTML代码:
<table>
<tbody><tr class="oddRow">
<td class="label"> Adhesive Type‎</td><td> Epoxy‎
</td>
</tr>
<tr>
<td class="label"> Applications‎</td><td> Hard Disk Drive Component Assembly‎
</td>
</tr>
<tr class="oddRow">
<td class="label"> Brand‎</td><td> Scotch-Weld‎
</td>
</tr>
<tr>
<td class="label"> Capabilities‎</td><td> Sustainability‎
</td>
</tr>
<tr class="oddRow">
<td class="label"> Color‎</td><td> Clear Amber‎
</td>
我正在尝试在sibling语句之后编写一个xpath来通过import.io爬虫抓取“Color”。选择“Color”时的xpath代码是:
//*[@id="attributeList"]/table/tbody/tr[5]/td[1]
我试过用:
//*[@id="attributeList"]/table/tbody/tr/td[.="Color"]/following-sibling::td
但它并没有从表中获取颜色属性值。我不确定它是否与奇数和偶数行类有关?当我看到HTML时,它似乎具有逻辑意义; color是“Color”,属性值位于以下td括号中。
答案 0 :(得分:7)
所选td
节点中的文字不仅仅包含"Color"
。它是 Color‎
。因此,您可以选择td
个文本为contains字符串"Color"
的{{1}}个节点:
'//*[@id="attributeList"]/table/tbody/tr/td[contains(text(), "Color")]/following-sibling::td/text()'