From d37190a072ff505f5aa271b6b5b14aaf6ced1201 Mon Sep 17 00:00:00 2001 From: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com> Date: Sun, 9 Aug 2026 19:45:11 -0700 Subject: [PATCH] fix e2e tests --- tests/specs/oidc-client-settings.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/specs/oidc-client-settings.spec.ts b/tests/specs/oidc-client-settings.spec.ts index 31f9d2c0..c3c1e1fd 100644 --- a/tests/specs/oidc-client-settings.spec.ts +++ b/tests/specs/oidc-client-settings.spec.ts @@ -262,7 +262,7 @@ test('Client secrets can be created with an expiration', async ({ page }) => { await page.goto(`/settings/admin/oidc-clients/${oidcClient.id}#credentials`); const card = page.getByTestId('client-secrets-card'); - await card.getByRole('combobox').click(); + await card.getByRole('button', { name: 'Expiration' }).click(); await page.getByRole('option', { name: '90 days' }).click(); await card.getByRole('button', { name: 'Add client secret' }).click();