From 0709d0c7266f1815a8bd72111e5e4db85f697268 Mon Sep 17 00:00:00 2001 From: Matthew Raymer Date: Mon, 31 Mar 2025 09:32:58 +0000 Subject: [PATCH] fix: resolve strict mode violation in gift recording test - Update selector to target specific gift text link instead of generic anchor - Add filter to ensure unique element selection - Fix test reliability by being explicit about element selection --- test-playwright/30-record-gift.spec.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test-playwright/30-record-gift.spec.ts b/test-playwright/30-record-gift.spec.ts index 104f9b7..f02bccd 100644 --- a/test-playwright/30-record-gift.spec.ts +++ b/test-playwright/30-record-gift.spec.ts @@ -109,7 +109,11 @@ test('Record something given', async ({ page }) => { // Refresh home view and check gift await page.goto('./'); - await page.locator('li').filter({ hasText: finalTitle }).locator('a').click(); + await page.locator('li') + .filter({ hasText: finalTitle }) + .locator('a.cursor-pointer') + .filter({ hasText: finalTitle }) + .click(); await expect(page.getByRole('heading', { name: 'Verifiable Claim Details' })).toBeVisible(); await expect(page.getByText(finalTitle, { exact: true })).toBeVisible(); const page1Promise = page.waitForEvent('popup');