alexdeathway / Gecom

A website built on Django that serves as a marketplace for cloud gaming and custom server hosting from multiple vendors and publishers.

Home Page:https://gecom.alexdeathway.me

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

alexdeathway opened this issue · comments

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

I can confirm this issue still exists.

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

I use this as a workaround:

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