Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用这样的 XPath 表达式从堆中选择一些数字元素://input[contains(@name, '[options]')][2]
//input[contains(@name, '[options]')][2]
嗯,这行不通。我想要的是在页面上获取一些输入元素,它在'name'属性中包含'[options]'字符串,我想选择第二个。
例如,我在页面上有 3 个 'name' 元素,它们都有这个 '[options]' 值,所以我想用他的编号取其中唯一的一个。就像您可以使用页面上的第二个 //input[2] 一样。
(//input[contains(@name, '[options]')])[2]
是你所追求的。