我想在我的属性中使用通配符。例如,这是我的常规XPath:
//input[@id='activation:j_idt84:voId:1']`
我想用通配符替换j_idt
号码,因为号码是动态的。我正在寻找这样的东西:
//input[@id='activation:*:voId:1']
我不知道如何解决这个问题。我的想法甚至可能吗?
答案 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')]