We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 175aeab commit c4b948bCopy full SHA for c4b948b
e2e/src/pages/HelloExtensionPage.ts
@@ -58,11 +58,11 @@ export class HelloExtensionPage extends SocketNavigationPage {
58
}
59
60
// Verify iframe loads
61
- await expect(this.page.locator('iframe')).toBeVisible({ timeout: 15000 });
+ await expect(this.page.locator('iframe[name="portal"]')).toBeVisible({ timeout: 15000 });
62
this.logger.info('Extension iframe loaded');
63
64
// Verify iframe content
65
- const iframe: FrameLocator = this.page.frameLocator('iframe');
+ const iframe: FrameLocator = this.page.frameLocator('iframe[name="portal"]');
66
67
// Check for "Foundry Functions Demo" text
68
await expect(iframe.getByText(/Foundry Functions Demo/i)).toBeVisible({ timeout: 10000 });
0 commit comments