make test less flaky

This commit is contained in:
Matthias Mair 2024-04-15 21:39:06 +02:00
parent 531a5914cb
commit cdd9d30091
No known key found for this signature in database
GPG Key ID: A593429DDA23B66A
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ import { classicUrl, user } from './defaults.js';
test('PUI - Basic test via django', async ({ page }) => {
await page.goto(`${classicUrl}/platform/`);
await expect(page).toHaveTitle('InvenTree Demo Server');
await page.waitForURL('**/platform/');
await page.waitForURL('**/platform/*');
await page.getByLabel('username').fill(user.username);
await page.getByLabel('password').fill(user.password);
await page.getByRole('button', { name: 'Log in' }).click();
@ -17,7 +17,7 @@ test('PUI - Basic test via django', async ({ page }) => {
test('PUI - Basic test', async ({ page }) => {
await page.goto('./platform/');
await expect(page).toHaveTitle('InvenTree');
await page.waitForURL('**/platform/');
await page.waitForURL('**/platform/*');
await page.getByLabel('username').fill(user.username);
await page.getByLabel('password').fill(user.password);
await page.getByRole('button', { name: 'Log in' }).click();