We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 013aa2e commit 2bf0901Copy full SHA for 2bf0901
e2e-tests/admin/tests/auth-method-ldap.spec.js
@@ -55,7 +55,10 @@ test(
55
.getByRole('navigation', { name: 'Application local navigation' })
56
.getByRole('link', { name: 'Auth Methods' })
57
.click();
58
- await page.getByRole('button', { name: 'New' }).click();
+ await expect(
59
+ page.getByRole('heading', { name: 'Auth Methods' }),
60
+ ).toBeVisible();
61
+ await page.getByRole('button', { name: 'New', exact: true }).click();
62
await page.getByRole('link', { name: 'LDAP' }).click();
63
64
const ldapAuthMethodName = 'LDAP ' + nanoid();
0 commit comments