虽然这似乎是正确的xpath(?),但它在firefox49 / firebug和chrome dev工具中并不匹配53.0.2785.116
//table[@id="foobar"]/tbody/tr[count("td") > 2]
我尝试选择tr
count()
的所有td
> 2
答案 0 :(得分:3)
count()
函数需要 node-set 作为参数。不要将td
放入引号:
//table[@id="foobar"]/tbody/tr[count(td) > 2]