Quamotion - 搜索包含一个字符串且不包含另一个字符串的元素

时间:2018-02-21 11:05:31

标签: ios testing webdriver

我正在使用Quamotion WebDriver测试iOS应用程序。

我正在尝试识别包含文字“store”并且不包含文字“closed”的元素。

我怎样才能找到这样的元素?

1 个答案:

答案 0 :(得分:1)

您应该能够在XPath中使用containsnotand表达式来获得您想要的内容:

//*[contains(@name, 'store') and not(contains(@name, 'closed'))]