diff --git a/README.md b/README.md index 1d7108be5..3fd2e151c 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Playwright is a Python library to automate [Chromium](https://www.chromium.org/H | | Linux | macOS | Windows | | :--- | :---: | :---: | :---: | -| Chromium 92.0.4500.0 | ✅ | ✅ | ✅ | +| Chromium 92.0.4513.0 | ✅ | ✅ | ✅ | | WebKit 14.2 | ✅ | ✅ | ✅ | | Firefox 89.0b9 | ✅ | ✅ | ✅ | diff --git a/playwright/async_api/_generated.py b/playwright/async_api/_generated.py index f748d985e..53f543234 100644 --- a/playwright/async_api/_generated.py +++ b/playwright/async_api/_generated.py @@ -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 @@ -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 ---------- @@ -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). @@ -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 diff --git a/playwright/sync_api/_generated.py b/playwright/sync_api/_generated.py index 014399d00..3e22fd986 100644 --- a/playwright/sync_api/_generated.py +++ b/playwright/sync_api/_generated.py @@ -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 @@ -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 ---------- @@ -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). @@ -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 diff --git a/setup.py b/setup.py index 935477d56..c8b18be27 100644 --- a/setup.py +++ b/setup.py @@ -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: