在 xpath 中使用正则表达式查找特定模式

Finding a specific pattern using regex in xpath

我想在 xpath 中使用正则表达式查找特定文本。

这是我的 xpath:

locator: //*[@class = 'android.widget.TextView' and contains(@text,'PriceBottomBarDialog-selector')]

此“PriceBottomBarDialog-selector”保持不变,开始文本不断变化。任何人都可以帮助解决正则表达式模式吗?

谢谢

你很接近。您需要修复 and you can use the :

  • Xpath:

    locator: //*[@class = 'android.widget.TextView' and contains(.,'PriceBottomBarDialog-selector')]