chore: Remove workaround for Firefox addIntercept contexts argument (#12159)

This commit is contained in:
Julian Descottes 2024-03-27 09:12:56 +01:00 committed by GitHub
parent 29637f2b8f
commit b144935789
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 10 deletions

View File

@ -185,11 +185,6 @@ export class BidiBrowserContext extends BrowserContext {
}
try {
for (const page of await this.pages()) {
// Workaround for Firefox
// TODO: Remove once https://bugzilla.mozilla.org/show_bug.cgi?id=1882260 is fixed
await page.setRequestInterception(false);
}
await this.userContext.remove();
} catch (error) {
debugError(error);

View File

@ -202,11 +202,6 @@ export class BidiPage extends Page {
override async close(options?: {runBeforeUnload?: boolean}): Promise<void> {
try {
if (this.#interception) {
// Workaround for Firefox
// TODO: Remove once https://bugzilla.mozilla.org/show_bug.cgi?id=1882260 is fixed
await this.setRequestInterception(false);
}
await this.#frame.browsingContext.close(options?.runBeforeUnload);
} catch {
return;