我有一个 html 表格,我正在尝试查找具有 href 标记的行,该标记的文本内容中包含“取消订阅”一词。我正在使用 lxml、python 和 xpath - 我可以使用这个找到行:
row_to_find = table.xpath("//tr[contains(descendant::*, 'Unsubscribe')]")[0]
但是上面没有在href中找到这个..并且以下不起作用..
row_to_find = tables.xpath(".//tr/*/a[contains(text(), 'Unsubscribe')]")