From 030fdf5c42dffbd920a0d2b13542d0c20e1478ca Mon Sep 17 00:00:00 2001 From: DarkPhoenix2704 Date: Wed, 7 Feb 2024 12:26:54 +0000 Subject: [PATCH] fix(nc-gui): kebab case --- tests/playwright/pages/Account/Authentication.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/playwright/pages/Account/Authentication.ts b/tests/playwright/pages/Account/Authentication.ts index e17776034a..13ff61bc4d 100644 --- a/tests/playwright/pages/Account/Authentication.ts +++ b/tests/playwright/pages/Account/Authentication.ts @@ -140,11 +140,11 @@ export class AccountAuthenticationPage extends BasePage { await oidcModal.locator('[data-test-id="nc-oidc-auth-url"]').fill(p.authUrl); - await oidcModal.locator('[data-test-id="nc-oidc-tokenUrl"]').fill(p.tokenUrl); + await oidcModal.locator('[data-test-id="nc-oidc-token-url"]').fill(p.tokenUrl); - await oidcModal.locator('[data-test-id="nc-oidc-userInfoUrl"]').fill(p.userInfoUrl); + await oidcModal.locator('[data-test-id="nc-oidc-user-info-url"]').fill(p.userInfoUrl); - await oidcModal.locator('[data-test-id="nc-oidc-jwkUrl"]').fill(p.jwkUrl); + await oidcModal.locator('[data-test-id="nc-oidc-jwk-url"]').fill(p.jwkUrl); await this.selectScope({ type: p.scopes,