2
0
mirror of https://github.com/inventree/InvenTree.git synced 2026-05-09 03:03:41 +00:00

test: fix basic login flow

This commit is contained in:
Matthias Mair
2026-05-08 23:12:21 +02:00
parent b1d9ddd9e6
commit 3b0a45397c
+2 -2
View File
@@ -36,8 +36,8 @@ export const doLogin = async (page: Page, options?: LoginOptions) => {
await page.waitForURL('**/web/login');
await page.getByLabel('username').fill(username);
await page.getByLabel('password').fill(password);
await page.getByRole('textbox', { name: 'login-username' }).fill(username);
await page.getByRole('textbox', { name: 'login-password' }).fill(password);
await page.waitForTimeout(100);