chore: roll playwright to 1745357020000 (#249)

This commit is contained in:
Pavel Feldman 2025-04-22 16:04:50 -07:00 committed by GitHub
parent 1bc3c761de
commit f7e9bae571
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 38 additions and 26 deletions

View file

@ -413,7 +413,7 @@ class PageSnapshot {
private async _snapshotFrame(frame: playwright.Page | playwright.FrameLocator) {
const frameIndex = this._frameLocators.push(frame) - 1;
const snapshotString = await frame.locator('body').ariaSnapshot({ ref: true });
const snapshotString = await frame.locator('body').ariaSnapshot({ ref: true, emitGeneric: true });
const snapshot = yaml.parseDocument(snapshotString);
const visit = async (node: any): Promise<unknown> => {