Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Swift - How do you test whether a label has been updated when a button is tapped

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?
like image 342
breaktop Avatar asked May 23 '16 18:05

breaktop


2 Answers

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)
like image 170
Joe Masilotti Avatar answered Nov 08 '22 15:11

Joe Masilotti


I would say you set the distinct accessibilityLabel or accessibilityIdentifierfor 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)

like image 27
itsViksIn Avatar answered Nov 08 '22 14:11

itsViksIn