Skip to content

Commit

Permalink
Playwright fix: force click on login button
Browse files Browse the repository at this point in the history
  • Loading branch information
Xpirix committed May 29, 2024
1 parent 46b039a commit a814ff7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playwright/ci-test/tests/00-authentication.setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test('authentication-setup', async ({ page }) => {

await expect(page.getByRole('link', { name: 'Login' })).toBeVisible();

await page.getByRole('link', { name: 'Login' }).click();
await page.getByRole('link', { name: 'Login' }).click({ force: true });

await page.waitForURL('**/accounts/login/');

Expand Down

0 comments on commit a814ff7

Please sign in to comment.