Skip to content

Commit db99c36

Browse files
authored
chore(roll): roll Playwright to 1.30.0-alpha-jan-16-2023 (#1725)
1 parent b4d34be commit db99c36

File tree

6 files changed

+1900
-316
lines changed

6 files changed

+1900
-316
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ Playwright is a Python library to automate [Chromium](https://www.chromium.org/H
44

55
| | Linux | macOS | Windows |
66
| :--- | :---: | :---: | :---: |
7-
| Chromium <!-- GEN:chromium-version -->109.0.5414.46<!-- GEN:stop --> ||||
7+
| Chromium <!-- GEN:chromium-version -->109.0.5414.74<!-- GEN:stop --> ||||
88
| WebKit <!-- GEN:webkit-version -->16.4<!-- GEN:stop --> ||||
9-
| Firefox <!-- GEN:firefox-version -->107.0<!-- GEN:stop --> ||||
9+
| Firefox <!-- GEN:firefox-version -->108.0.2<!-- GEN:stop --> ||||
1010

1111
## Documentation
1212

playwright/_impl/_page.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -954,7 +954,10 @@ def request(self) -> "APIRequestContext":
954954
return self.context.request
955955

956956
async def pause(self) -> None:
957-
await self._browser_context._pause()
957+
await asyncio.wait(
958+
[self._browser_context._pause(), self._closed_or_crashed_future],
959+
return_when=asyncio.FIRST_COMPLETED,
960+
)
958961

959962
async def pdf(
960963
self,

0 commit comments

Comments
 (0)