Skip to content

Commit b5c9f8d

Browse files
authored
feat(roll): roll Playwright to 1.12.0-next-1621639045000 (microsoft#718)
1 parent 835cdce commit b5c9f8d

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Playwright is a Python library to automate [Chromium](https://www.chromium.org/H
66

77
| | Linux | macOS | Windows |
88
| :--- | :---: | :---: | :---: |
9-
| Chromium <!-- GEN:chromium-version -->92.0.4500.0<!-- GEN:stop --> ||||
9+
| Chromium <!-- GEN:chromium-version -->92.0.4513.0<!-- GEN:stop --> ||||
1010
| WebKit <!-- GEN:webkit-version -->14.2<!-- GEN:stop --> ||||
1111
| Firefox <!-- GEN:firefox-version -->89.0b9<!-- GEN:stop --> ||||
1212

playwright/async_api/_generated.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6149,7 +6149,7 @@ async def wait_for_event(
61496149
> NOTE: In most cases, you should use `page.expect_event()`.
61506150
61516151
Waits for given `event` to fire. If predicate is provided, it passes event's value into the `predicate` function and
6152-
waits for `predicate(event)` to return a truthy value. Will throw an error if the socket is closed before the `event` is
6152+
waits for `predicate(event)` to return a truthy value. Will throw an error if the page is closed before the `event` is
61536153
fired.
61546154
61556155
Parameters
@@ -8695,8 +8695,8 @@ async def wait_for_event(
86958695
> NOTE: In most cases, you should use `browser_context.expect_event()`.
86968696
86978697
Waits for given `event` to fire. If predicate is provided, it passes event's value into the `predicate` function and
8698-
waits for `predicate(event)` to return a truthy value. Will throw an error if the socket is closed before the `event` is
8699-
fired.
8698+
waits for `predicate(event)` to return a truthy value. Will throw an error if the browser context is closed before the
8699+
`event` is fired.
87008700
87018701
Parameters
87028702
----------
@@ -9401,7 +9401,7 @@ async def launch(
94019401
trace_dir : Union[pathlib.Path, str, NoneType]
94029402
If specified, traces are saved into this directory.
94039403
chromium_sandbox : Union[bool, NoneType]
9404-
Enable Chromium sandboxing. Defaults to `true`.
9404+
Enable Chromium sandboxing. Defaults to `false`.
94059405
firefox_user_prefs : Union[Dict[str, Union[bool, float, str]], NoneType]
94069406
Firefox user preferences. Learn more about the Firefox user preferences at
94079407
[`about:config`](https://support.mozilla.org/en-US/kb/about-config-editor-firefox).
@@ -9589,7 +9589,7 @@ async def launch_persistent_context(
95899589
trace_dir : Union[pathlib.Path, str, NoneType]
95909590
If specified, traces are saved into this directory.
95919591
chromium_sandbox : Union[bool, NoneType]
9592-
Enable Chromium sandboxing. Defaults to `true`.
9592+
Enable Chromium sandboxing. Defaults to `false`.
95939593
record_har_path : Union[pathlib.Path, str, NoneType]
95949594
Enables [HAR](http://www.softwareishard.com/blog/har-12-spec) recording for all pages into the specified HAR file on the
95959595
filesystem. If not specified, the HAR is not recorded. Make sure to call `browser_context.close()` for the HAR to

playwright/sync_api/_generated.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6111,7 +6111,7 @@ def wait_for_event(
61116111
> NOTE: In most cases, you should use `page.expect_event()`.
61126112
61136113
Waits for given `event` to fire. If predicate is provided, it passes event's value into the `predicate` function and
6114-
waits for `predicate(event)` to return a truthy value. Will throw an error if the socket is closed before the `event` is
6114+
waits for `predicate(event)` to return a truthy value. Will throw an error if the page is closed before the `event` is
61156115
fired.
61166116
61176117
Parameters
@@ -8641,8 +8641,8 @@ def wait_for_event(
86418641
> NOTE: In most cases, you should use `browser_context.expect_event()`.
86428642
86438643
Waits for given `event` to fire. If predicate is provided, it passes event's value into the `predicate` function and
8644-
waits for `predicate(event)` to return a truthy value. Will throw an error if the socket is closed before the `event` is
8645-
fired.
8644+
waits for `predicate(event)` to return a truthy value. Will throw an error if the browser context is closed before the
8645+
`event` is fired.
86468646
86478647
Parameters
86488648
----------
@@ -9347,7 +9347,7 @@ def launch(
93479347
trace_dir : Union[pathlib.Path, str, NoneType]
93489348
If specified, traces are saved into this directory.
93499349
chromium_sandbox : Union[bool, NoneType]
9350-
Enable Chromium sandboxing. Defaults to `true`.
9350+
Enable Chromium sandboxing. Defaults to `false`.
93519351
firefox_user_prefs : Union[Dict[str, Union[bool, float, str]], NoneType]
93529352
Firefox user preferences. Learn more about the Firefox user preferences at
93539353
[`about:config`](https://support.mozilla.org/en-US/kb/about-config-editor-firefox).
@@ -9535,7 +9535,7 @@ def launch_persistent_context(
95359535
trace_dir : Union[pathlib.Path, str, NoneType]
95369536
If specified, traces are saved into this directory.
95379537
chromium_sandbox : Union[bool, NoneType]
9538-
Enable Chromium sandboxing. Defaults to `true`.
9538+
Enable Chromium sandboxing. Defaults to `false`.
95399539
record_har_path : Union[pathlib.Path, str, NoneType]
95409540
Enables [HAR](http://www.softwareishard.com/blog/har-12-spec) recording for all pages into the specified HAR file on the
95419541
filesystem. If not specified, the HAR is not recorded. Make sure to call `browser_context.close()` for the HAR to

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
InWheel = None
2929
from wheel.bdist_wheel import bdist_wheel as BDistWheelCommand
3030

31-
driver_version = "1.12.0-next-1621456974000"
31+
driver_version = "1.12.0-next-1621639045000"
3232

3333

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

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy