We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1de725a commit dca6e6bCopy full SHA for dca6e6b
src/McpContext.ts
@@ -302,7 +302,9 @@ export class McpContext implements Context {
302
*/
303
async createTextSnapshot(): Promise<void> {
304
const page = this.getSelectedPage();
305
- const rootNode = await page.accessibility.snapshot();
+ const rootNode = await page.accessibility.snapshot({
306
+ includeIframes: true,
307
+ });
308
if (!rootNode) {
309
return;
310
}
0 commit comments