From 2b74b47d069d652b543c619281a2671d52171171 Mon Sep 17 00:00:00 2001 From: philipp Date: Mon, 2 Sep 2024 14:03:28 +0300 Subject: [PATCH] proper variable name --- frontend/tests/cox.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/tests/cox.spec.ts b/frontend/tests/cox.spec.ts index 8d545c0..5272a58 100644 --- a/frontend/tests/cox.spec.ts +++ b/frontend/tests/cox.spec.ts @@ -52,7 +52,7 @@ test.describe("cox can edit trips", () => { test("edit remarks", async () => { await sharedPage.goto("/planned"); - await page.getByRole('link', { name: 'Details' }).nth(1).click(); + await sharedPage.getByRole('link', { name: 'Details' }).nth(1).click(); await sharedPage.locator("#sidebar #notes").click(); await sharedPage.locator("#sidebar #notes").fill("Meine Anmerkung"); await sharedPage.getByRole("button", { name: "Speichern" }).click();