标签: ios testing webdriver
我正在使用Quamotion WebDriver测试iOS应用程序。
我正在尝试识别包含文字“store”并且不包含文字“closed”的元素。
store
closed
我怎样才能找到这样的元素?
答案 0 :(得分:1)
您应该能够在XPath中使用contains,not和and表达式来获得您想要的内容:
contains
not
and
//*[contains(@name, 'store') and not(contains(@name, 'closed'))]