在Selenium WebDriver中的属性中使用XPath通配符

时间:2012-09-19 13:26:11

标签: selenium xpath

我想在我的属性中使用通配符。例如,这是我的常规XPath:

//input[@id='activation:j_idt84:voId:1']`

我想用通配符替换j_idt号码,因为号码是动态的。我正在寻找这样的东西:

//input[@id='activation:*:voId:1']

我不知道如何解决这个问题。我的想法甚至可能吗?

2 个答案:

答案 0 :(得分:25)

不幸的是XPath中没有字符串通配符。但是,您可以使用多个contains()starts-with()来过滤此类内容。

//input[starts-with(@id, 'activation:') and contains(@id, ':voId:1')]

此外,这个答案也很有用:selenium: Is it possible to use the regexp in selenium locators

答案 1 :(得分:2)

可以使用XPath 2.0中提供的matches函数

来使用字符串通配符:

//input[matches(@id, 'activation:.*:voId:1')]