From 275531be7c1ca868f7b35aa758ac2dbb0aabf66f Mon Sep 17 00:00:00 2001 From: MarvNC Date: Mon, 8 Jul 2024 15:23:32 -0700 Subject: [PATCH] Fix selector --- test/playwright/visual.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/playwright/visual.spec.js b/test/playwright/visual.spec.js index 9288e584a9..caefe3979d 100644 --- a/test/playwright/visual.spec.js +++ b/test/playwright/visual.spec.js @@ -54,7 +54,7 @@ test('visual', async ({page, extensionId}) => { // Get page height by getting the footer and adding height and y position - const footer = /** @type {import('@playwright/test').ElementHandle} */ (await page.locator('.footer…-padding').elementHandle()); + const footer = /** @type {import('@playwright/test').ElementHandle} */ (await page.locator('.footer-padding').elementHandle()); expect(footer).not.toBe(null); const boundingBox = /** @type {NonNullable['boundingBox']>>>} */ (await footer.boundingBox()); expect(boundingBox).not.toBe(null);