I've go a very simple calculator and I' trying to test whether a label gets updated when a button is tapped.
My test method looks like this:
let app = XCUIApplication()
app.buttons["9"].tap()
I can visually see the Label being updated but I'm not sure how to test it.
I think I need to use XCUIElementQuery
API to query label and then assert that the label text has changed. I'm just not sure how to do that.
I'm not sure about the following questions:
- Do I need to know what the value is for the label to be able to query?
- Is there a way of querying for the label without knowing what the value is when the application starts?
With UI Testing you might have to think about your problem a little differently. Instead of asserting that something changed, check if the new thing exists.
In practice, this means to check that a label with your expected value appears. Don't check that an existing one changed to the correct state.
So, in your example, you can do the following. This will check that when you tap the "9" button a label with the text "42" appears.
let app = XCUIApplication()
app.buttons["9"].tap()
XCTAssert(app.staticTexts["42"].exists)
I would say you set the distinct accessibilityLabel
or accessibilityIdentifier
for the button you want to tap, and then compare the values before and after tap()
and check if label
has changed using XCTAssertNotEqual
assertion,
In the application code :
button.accessibilityIdentifier = "TappableButton"
Then in test file :
let app = XCUIApplication()
let buttonLabel = app.buttons["TappableButton"].label
app.buttons["TappableButton"].tap()
XCTAssertNotEqual(buttonLabel, app.buttons[TappableButton].label)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With