Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Playwright is a Python library to automate [Chromium](https://www.chromium.org/H

| | Linux | macOS | Windows |
| :--- | :---: | :---: | :---: |
| Chromium <!-- GEN:chromium-version -->92.0.4500.0<!-- GEN:stop --> | ✅ | ✅ | ✅ |
| Chromium <!-- GEN:chromium-version -->92.0.4513.0<!-- GEN:stop --> | ✅ | ✅ | ✅ |
| WebKit <!-- GEN:webkit-version -->14.2<!-- GEN:stop --> | ✅ | ✅ | ✅ |
| Firefox <!-- GEN:firefox-version -->89.0b9<!-- GEN:stop --> | ✅ | ✅ | ✅ |

Expand Down
10 changes: 5 additions & 5 deletions playwright/async_api/_generated.py
Original file line number Diff line number Diff line change
Expand Up @@ -6149,7 +6149,7 @@ async def wait_for_event(
> NOTE: In most cases, you should use `page.expect_event()`.

Waits for given `event` to fire. If predicate is provided, it passes event's value into the `predicate` function and
waits for `predicate(event)` to return a truthy value. Will throw an error if the socket is closed before the `event` is
waits for `predicate(event)` to return a truthy value. Will throw an error if the page is closed before the `event` is
fired.

Parameters
Expand Down Expand Up @@ -8695,8 +8695,8 @@ async def wait_for_event(
> NOTE: In most cases, you should use `browser_context.expect_event()`.

Waits for given `event` to fire. If predicate is provided, it passes event's value into the `predicate` function and
waits for `predicate(event)` to return a truthy value. Will throw an error if the socket is closed before the `event` is
fired.
waits for `predicate(event)` to return a truthy value. Will throw an error if the browser context is closed before the
`event` is fired.

Parameters
----------
Expand Down Expand Up @@ -9401,7 +9401,7 @@ async def launch(
trace_dir : Union[pathlib.Path, str, NoneType]
If specified, traces are saved into this directory.
chromium_sandbox : Union[bool, NoneType]
Enable Chromium sandboxing. Defaults to `true`.
Enable Chromium sandboxing. Defaults to `false`.
firefox_user_prefs : Union[Dict[str, Union[bool, float, str]], NoneType]
Firefox user preferences. Learn more about the Firefox user preferences at
[`about:config`](https://support.mozilla.org/en-US/kb/about-config-editor-firefox).
Expand Down Expand Up @@ -9589,7 +9589,7 @@ async def launch_persistent_context(
trace_dir : Union[pathlib.Path, str, NoneType]
If specified, traces are saved into this directory.
chromium_sandbox : Union[bool, NoneType]
Enable Chromium sandboxing. Defaults to `true`.
Enable Chromium sandboxing. Defaults to `false`.
record_har_path : Union[pathlib.Path, str, NoneType]
Enables [HAR](http://www.softwareishard.com/blog/har-12-spec) recording for all pages into the specified HAR file on the
filesystem. If not specified, the HAR is not recorded. Make sure to call `browser_context.close()` for the HAR to
Expand Down
10 changes: 5 additions & 5 deletions playwright/sync_api/_generated.py
Original file line number Diff line number Diff line change
Expand Up @@ -6111,7 +6111,7 @@ def wait_for_event(
> NOTE: In most cases, you should use `page.expect_event()`.

Waits for given `event` to fire. If predicate is provided, it passes event's value into the `predicate` function and
waits for `predicate(event)` to return a truthy value. Will throw an error if the socket is closed before the `event` is
waits for `predicate(event)` to return a truthy value. Will throw an error if the page is closed before the `event` is
fired.

Parameters
Expand Down Expand Up @@ -8641,8 +8641,8 @@ def wait_for_event(
> NOTE: In most cases, you should use `browser_context.expect_event()`.

Waits for given `event` to fire. If predicate is provided, it passes event's value into the `predicate` function and
waits for `predicate(event)` to return a truthy value. Will throw an error if the socket is closed before the `event` is
fired.
waits for `predicate(event)` to return a truthy value. Will throw an error if the browser context is closed before the
`event` is fired.

Parameters
----------
Expand Down Expand Up @@ -9347,7 +9347,7 @@ def launch(
trace_dir : Union[pathlib.Path, str, NoneType]
If specified, traces are saved into this directory.
chromium_sandbox : Union[bool, NoneType]
Enable Chromium sandboxing. Defaults to `true`.
Enable Chromium sandboxing. Defaults to `false`.
firefox_user_prefs : Union[Dict[str, Union[bool, float, str]], NoneType]
Firefox user preferences. Learn more about the Firefox user preferences at
[`about:config`](https://support.mozilla.org/en-US/kb/about-config-editor-firefox).
Expand Down Expand Up @@ -9535,7 +9535,7 @@ def launch_persistent_context(
trace_dir : Union[pathlib.Path, str, NoneType]
If specified, traces are saved into this directory.
chromium_sandbox : Union[bool, NoneType]
Enable Chromium sandboxing. Defaults to `true`.
Enable Chromium sandboxing. Defaults to `false`.
record_har_path : Union[pathlib.Path, str, NoneType]
Enables [HAR](http://www.softwareishard.com/blog/har-12-spec) recording for all pages into the specified HAR file on the
filesystem. If not specified, the HAR is not recorded. Make sure to call `browser_context.close()` for the HAR to
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
InWheel = None
from wheel.bdist_wheel import bdist_wheel as BDistWheelCommand

driver_version = "1.12.0-next-1621456974000"
driver_version = "1.12.0-next-1621639045000"


def extractall(zip: zipfile.ZipFile, path: str) -> None:
Expand Down