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 d32f9f4 commit 7ae0dbdCopy full SHA for 7ae0dbd
tests/extension/extensionTest.ts
@@ -55,6 +55,9 @@ export const extensionTest = baseTest.extend<TraceViewerFixtures>(traceViewerFix
55
await context.pages()[0].getByRole('button', { name: 'Share This Tab' }).click();
56
await context.pages()[0].goto('about:blank');
57
const browser = await playwright.chromium.connectOverCDP(`${origin}${server.CDP_PATH}`);
58
+ context.on('dialog', dialog => {
59
+ // Make sure the dialog is not dismissed automatically.
60
+ });
61
await use(browser);
62
httpServer.close();
63
}, { scope: 'worker' }],
0 commit comments