You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could you share a full repro? The following works for me:
// @ts-checkconstplaywright=require('playwright');(async()=>{// Try to add 'firefox' to the list ↓for(constbrowserTypeof['firefox']){/** @type {import('playwright').Browser} */constbrowser=awaitplaywright[browserType].launch();constcontext=awaitbrowser.newContext();constpage=awaitcontext.newPage();awaitpage.goto('https://github.com/microsoft/playwright#readme');awaitpage.screenshot({path: `example-${browserType}.png`});awaitbrowser.close();}})();
Context:
Describe the bug
When using firefox browser, when the requested url contains #, page.goto reports an error: NS_BINDING_ABORTED
The text was updated successfully, but these errors were encountered: