test: proper escaping for exact text match (#16866)

This commit is contained in:
Yury Semikhatsky 2022-08-26 22:16:04 -07:00 committed by GitHub
parent 67d5c13d65
commit 1dcd756996
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -442,12 +442,13 @@ it('should work with unpaired quotes when not at the start', async ({ page }) =>
it('should work with paired quotes in the middle of selector', async ({ page }) => {
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/16858' });
it.fail();
await page.setContent(`<div>pattern "^-?\\d+$"</div>`);
expect(await page.locator(`div >> text=pattern "^-?\\d+$`).isVisible());
expect(await page.locator(`div >> text=pattern "^-?\\d+$"`).isVisible());
expect(await page.locator(`div >> text='pattern "^-?\\d+$"'`).isVisible());
// Should double escape inside quoted text.
expect(await page.locator(`div >> text='pattern "^-?\\\\d+$"'`).isVisible());
await expect(page.locator(`div >> text=pattern "^-?\\d+$`)).toBeVisible();
await expect(page.locator(`div >> text=pattern "^-?\\d+$"`)).toBeVisible();
await expect(page.locator(`div >> text='pattern "^-?\\d+$"'`)).toBeVisible();
// Should double escape inside quoted text.
await expect(page.locator(`div >> text='pattern "^-?\\\\d+$"'`)).toBeVisible();
});