Skip to content

Commit 91629f2

Browse files
committed
fix start-auth.js
1 parent b39076a commit 91629f2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/pit/its/start-auth.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ const { log, args, createPage, closePage, takeScreenshot, waitForServerReady, di
99
await takeScreenshot(page, __filename, 'page-loaded');
1010

1111
log('Testing authentication login flow');
12-
await page.waitForURL(`${arg.url.replace(':8080', ':8080')}/login`);
1312
await page.locator('input[name="username"]').click();
1413
await page.locator('input[name="username"]').fill('admin');
1514
await page.locator('input[name="password"]').click();
@@ -28,7 +27,7 @@ const { log, args, createPage, closePage, takeScreenshot, waitForServerReady, di
2827

2928
log('Testing Master-Detail functionality');
3029
// TODO: investigate why this is needed when notification is visible click does not work in master-detail
31-
await page.goto(`${arg.url}/master-detail-view`);
30+
await page.goto(`${arg.url}master-detail-view`);
3231
await page.locator('text=Master-Detail').nth(0).click();
3332
log('--- Click on eula.lane');
3433
await page.locator('text=eula.lane').click();

0 commit comments

Comments
 (0)