Skip to content

Commit c7ea729

Browse files
committed
chore: Looks like NC28 also updated strings...
1 parent 856b4d1 commit c7ea729

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

e2e/linkeditor.28.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
import { test, expect, type Page } from "@playwright/test";
22

33
const adminLogin = async (page: Page) => {
4-
await page.getByPlaceholder("Account name or email").fill(process.env.NEXTCLOUD_ADMIN_USER!);
5-
await page.getByPlaceholder("Account name or email").press("Tab");
4+
await page.getByPlaceholder("Login with username or email").fill(process.env.NEXTCLOUD_ADMIN_USER!);
5+
await page.getByPlaceholder("Login with username or email").press("Tab");
66
await page.getByPlaceholder("Password").fill(process.env.NEXTCLOUD_ADMIN_PASSWORD!);
77
await page.getByPlaceholder("Password").press("Enter");
88
};
99

1010
const testUserLogin = async (page: Page) => {
1111
// Log in as other user
12-
await page.getByPlaceholder("Account name or email").fill("testuser-1");
13-
await page.getByPlaceholder("Account name or email").press("Tab");
12+
await page.getByPlaceholder("Login with username or email").fill("testuser-1");
13+
await page.getByPlaceholder("Login with username or email").press("Tab");
1414
await page.getByPlaceholder("Password").fill("testuser-1-password");
1515
await page.getByPlaceholder("Password").press("Enter");
1616
};

0 commit comments

Comments
 (0)