Xpath选择多个元素

时间:2017-03-03 13:16:53

标签: xpath

有没有办法让以下线更短? 我可以在一行中选择/ span / strong [2]和/ strong [2]而不使用" |"?

//*[@id="content"]/div[2]/div[2]//following-sibling::p[1]/span/strong[2] | //*[@id="content"]/div[2]/div[2]//following-sibling::p[1]/strong[2]

2 个答案:

答案 0 :(得分:0)

为什么不使用第二条路径

//*[@id="content"]/div[2]/div[2]//following-sibling::p[1]/strong[2]

它包含两个指令。

答案 1 :(得分:0)

使用p[1]//strong[2]

这意味着strong[2]

的所有p[1]个后代