Skip to content

Commit

Permalink
chore(roll): roll Playwright to 1.30.0-alpha-jan-16-2023 (#1725)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt authored Jan 17, 2023
1 parent b4d34be commit db99c36
Show file tree
Hide file tree
Showing 6 changed files with 1,900 additions and 316 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ Playwright is a Python library to automate [Chromium](https://www.chromium.org/H

| | Linux | macOS | Windows |
| :--- | :---: | :---: | :---: |
| Chromium <!-- GEN:chromium-version -->109.0.5414.46<!-- GEN:stop --> ||||
| Chromium <!-- GEN:chromium-version -->109.0.5414.74<!-- GEN:stop --> ||||
| WebKit <!-- GEN:webkit-version -->16.4<!-- GEN:stop --> ||||
| Firefox <!-- GEN:firefox-version -->107.0<!-- GEN:stop --> ||||
| Firefox <!-- GEN:firefox-version -->108.0.2<!-- GEN:stop --> ||||

## Documentation

Expand Down
5 changes: 4 additions & 1 deletion playwright/_impl/_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,10 @@ def request(self) -> "APIRequestContext":
return self.context.request

async def pause(self) -> None:
await self._browser_context._pause()
await asyncio.wait(
[self._browser_context._pause(), self._closed_or_crashed_future],
return_when=asyncio.FIRST_COMPLETED,
)

async def pdf(
self,
Expand Down
Loading

0 comments on commit db99c36

Please sign in to comment.