标签: xpath
XPath表达式root.xpath('//table//tr')可以获取root中的所有tr元素。 现在我想选择有4个以上孩子的所有tr。如何写表达式?
root.xpath('//table//tr')
tr
我尝试了//table/tr[count(child::)>4]并失败了。
//table/tr[count(child::)>4]
答案 0 :(得分:1)
你快到了,试试这个:
//table/tr[count(child::*)>4]
或简单地说:
//table/tr[count(*)>4]