Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] "NS_BINDING_ABORTED" error in Firefox browser, works fine in chromium. #49

Open
alexdeathway opened this issue Mar 16, 2024 · 5 comments

Comments

@alexdeathway
Copy link
Owner

Issue already reported in microsoft/playwright#20749 by other users.

@kosteklvp
Copy link

I can confirm this issue still exists.

@brett-matson
Copy link

Getting the same here. Does anyone have a work around?

@kosteklvp
Copy link

I use this as a workaround:

    try {
        await this.page.goto(url);
    } catch (error: any) {
        if (!error.message.includes('NS_BINDING_ABORTED')) {
            throw error;
        }
    }

@kosteklvp
Copy link

@alexdeathway why is this issue added to your repo https://github.com/alexdeathway/Gecom instead of Playwright?

@alexdeathway
Copy link
Owner Author

@kosteklvp this issue is already reported in playwright.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants