2

在此处输入图像描述

在我点击我的加号按钮后,如何编写 aUITest以检查我的标签(当前带有文本:)是否2已将其值更改为。3

4

1 回答 1

2
let app = XCUIApplication()    
let textPredicate = NSPredicate(format: "label = %@", "3")
expectationForPredicate(textPredicate, evaluatedWithObject: app.staticTexts["numberOfItemsLabel"], handler: nil)
app.buttons["increaseNumberOfItemsButton"].tap()
于 2015-08-28T14:12:13.420 回答