iOS XCUIT prueba el elemento de acceso por accesibilidad

¿Cómo afirmo que existe un botón por su etiqueta de accesibilidad o identificador?

func testExitsButton() {
    XCTAssertTrue(app.windows.containing(.button, identifier: "Button Text").element.exists)
    XCTAssertTrue(app.buttons["Button Text"].exists)
    XCTAssertTrue(app.buttons["test"].exists) <- I want this, instead of accessing the text property I want by specific id, maybe the text property override the accessibilityLabel?
}

Respuestas a la pregunta(3)

Su respuesta a la pregunta