From 11ebfbd66c0e31129ae06b30ce473232009bc153 Mon Sep 17 00:00:00 2001 From: Stefan Ceriu Date: Tue, 15 Apr 2025 13:15:09 +0300 Subject: [PATCH] Fix integration tests OIDC username or email field identifier. --- IntegrationTests/Sources/Common.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IntegrationTests/Sources/Common.swift b/IntegrationTests/Sources/Common.swift index 5ee087cf9..9bad7adbf 100644 --- a/IntegrationTests/Sources/Common.swift +++ b/IntegrationTests/Sources/Common.swift @@ -45,7 +45,7 @@ extension XCUIApplication { XCTAssertTrue(webAuthenticationView.waitForExistence(timeout: 10.0)) webAuthenticationView.tap() // Tap the web view to properly focus the app again. - let webUsernameTextField = textFields["Username"] + let webUsernameTextField = textFields["Username or Email"] XCTAssertTrue(webUsernameTextField.waitForExistence(timeout: 10.0)) webUsernameTextField.clearAndTypeText(username, app: self)