We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd86d5a commit 275531bCopy full SHA for 275531b
test/playwright/visual.spec.js
@@ -54,7 +54,7 @@ test('visual', async ({page, extensionId}) => {
54
55
// Get page height by getting the footer and adding height and y position
56
57
- const footer = /** @type {import('@playwright/test').ElementHandle<HTMLElement>} */ (await page.locator('.footer…-padding').elementHandle());
+ const footer = /** @type {import('@playwright/test').ElementHandle<HTMLElement>} */ (await page.locator('.footer-padding').elementHandle());
58
expect(footer).not.toBe(null);
59
const boundingBox = /** @type {NonNullable<Awaited<ReturnType<import('@playwright/test').ElementHandle<HTMLElement>['boundingBox']>>>} */ (await footer.boundingBox());
60
expect(boundingBox).not.toBe(null);
0 commit comments