Translate login authentication errors

This commit is contained in:
n200534
2026-08-18 15:33:42 +05:30
parent 87e681b71e
commit eff8bb16a0
33 changed files with 177 additions and 5 deletions

View File

@@ -36,7 +36,7 @@ class AuthentificationIT {
page.navigate(getLoginPageUrl());
PlaywrightTestUtils.login(page, TestConstants.ADMIN_USERNAME, "wrong_password");
PlaywrightAssertions.assertThat(page.getByRole(AriaRole.ALERT))
.containsText("wrong username or password");
.containsText("Wrong username or password");
}
@Test