Fixes #533 - Fix integration tests

This commit is contained in:
Stefan Ceriu 2023-02-15 14:11:17 +02:00 committed by Stefan Ceriu
parent 4fd24a6c16
commit 6333de802a
1 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ class LoginTests: XCTestCase {
private func runLoginLogoutFlow() {
let app = Application.launch()
let getStartedButton = app.buttons[A11yIdentifiers.onboarding.signIn]
let getStartedButton = app.buttons[A11yIdentifiers.onboardingScreen.signIn]
XCTAssertTrue(getStartedButton.waitForExistence(timeout: 5.0))
getStartedButton.tap()
@ -47,12 +47,12 @@ class LoginTests: XCTestCase {
XCTAssertTrue(editHomeserverButton.waitForExistence(timeout: 5.0))
editHomeserverButton.tap()
let homeserverTextField = app.textFields[A11yIdentifiers.changeServer.server]
let homeserverTextField = app.textFields[A11yIdentifiers.changeServerScreen.server]
XCTAssertTrue(homeserverTextField.waitForExistence(timeout: 5.0))
homeserverTextField.clearAndTypeText(app.homeserver)
let confirmButton = app.buttons[A11yIdentifiers.changeServer.server]
let confirmButton = app.buttons[A11yIdentifiers.changeServerScreen.continue]
XCTAssertTrue(confirmButton.exists)
confirmButton.tap()