xpath条件选择,' tr'有数字'' > 2

时间:2016-10-04 14:11:45

标签: xpath

虽然这似乎是正确的(?),但它在firefox49 / firebug和chrome dev工具中并不匹配53.0.2785.116

//table[@id="foobar"]/tbody/tr[count("td") > 2]

我尝试选择tr count()的所有td> 2

1 个答案:

答案 0 :(得分:3)

count()函数需要 node-set 作为参数。不要将td放入引号:

//table[@id="foobar"]/tbody/tr[count(td) > 2]