Update playwright (#33060)

* Update playwright

* Update snapshots

* Update types

* Update snapshot

* Update playwright-common

* Remove stale screenshots

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
renovate[bot]
2026-04-07 16:16:57 +00:00
committed by GitHub
co-authored by renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Michael Telatynski
parent edea3fffdf
commit 1dcc19b4b6
10 changed files with 57 additions and 57 deletions
+2 -2
View File
@@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Com
Please see LICENSE files in the repository root for full details.
*/
import type { Page, Request, Route } from "@playwright/test";
import type { Page, Request, Route, Disposable } from "@playwright/test";
import type { Client } from "./client";
/**
@@ -16,7 +16,7 @@ import type { Client } from "./client";
*/
export class Network {
private isOffline = false;
private setupPromise?: Promise<void>;
private setupPromise?: Promise<Disposable>;
constructor(
private page: Page,