@blockrun/franklin 3.6.11 → 3.6.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/social/browser.js +2 -0
- package/package.json +1 -1
package/dist/social/browser.js
CHANGED
|
@@ -145,6 +145,8 @@ export class SocialBrowser {
|
|
|
145
145
|
async snapshot() {
|
|
146
146
|
this.requirePage();
|
|
147
147
|
// Playwright's accessibility snapshot returns a full AX tree
|
|
148
|
+
// page.accessibility was removed from Playwright types in v1.46 but still works at runtime
|
|
149
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
148
150
|
const axRoot = await this.page.accessibility.snapshot({ interestingOnly: false });
|
|
149
151
|
if (!axRoot)
|
|
150
152
|
return '';
|
package/package.json
CHANGED