Xcode ui test: staticTexts start with

廉价感情. 提交于 2019-12-06 01:47:45

问题


I want to check if an element on my ui which start with a prefix is present. How is it possible to implement it in Xcode 7 UI Tests?

app.tables["AAA"].staticTexts["Fax: 0049XXXXXXXX"].exists

I have three element into a tableview cell and only one (the third or last one) starts with the prefix Fax: 0049. How can i check the present of this element?

I tried with

app.tables["AAA"].cells.staticTexts.elementBoundByIndex(2).exists

But nothing, some ideas? Cheers


回答1:


You can use a BEGINSWITH predicate to check if an element starts with a prefix.

let app = XCUIApplication()
let faxPredicate = NSPredicate(format: "label BEGINSWITH 'Fax: '")
let faxLabel = app.staticTexts.element(matching: faxPredicate)
XCTAssert(faxLabel.exists)

Here's a working example for selecting elements with a different BEGINSWITH predicate, a picker with multiple wheels.



来源:https://stackoverflow.com/questions/35509177/xcode-ui-test-statictexts-start-with

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!