From 5133469433d7c9a68696c6885fb1113bece431e1 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Thu, 30 Sep 2021 21:17:42 +0300 Subject: [PATCH] chore(release-1.15): roll driver to 1.15.0-1633020276000 --- playwright/async_api/_generated.py | 12 ++++++------ playwright/sync_api/_generated.py | 12 ++++++------ setup.py | 2 +- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/playwright/async_api/_generated.py b/playwright/async_api/_generated.py index e6a347e91..96ecafcf6 100644 --- a/playwright/async_api/_generated.py +++ b/playwright/async_api/_generated.py @@ -10872,7 +10872,7 @@ async def new_context( no_viewport : Union[bool, NoneType] Does not enforce fixed viewport, allows resizing window in the headed mode. ignore_https_errors : Union[bool, NoneType] - Whether to ignore HTTPS errors during navigation. Defaults to `false`. + Whether to ignore HTTPS errors when sending network requests. Defaults to `false`. java_script_enabled : Union[bool, NoneType] Whether or not to enable JavaScript in the context. Defaults to `true`. bypass_csp : Union[bool, NoneType] @@ -10891,7 +10891,7 @@ async def new_context( A list of permissions to grant to all pages in this context. See `browser_context.grant_permissions()` for more details. extra_http_headers : Union[Dict[str, str], NoneType] - An object containing additional HTTP headers to be sent with every request. All header values must be strings. + An object containing additional HTTP headers to be sent with every request. offline : Union[bool, NoneType] Whether to emulate network being offline. Defaults to `false`. http_credentials : Union[{username: str, password: str}, NoneType] @@ -11046,7 +11046,7 @@ async def new_page( no_viewport : Union[bool, NoneType] Does not enforce fixed viewport, allows resizing window in the headed mode. ignore_https_errors : Union[bool, NoneType] - Whether to ignore HTTPS errors during navigation. Defaults to `false`. + Whether to ignore HTTPS errors when sending network requests. Defaults to `false`. java_script_enabled : Union[bool, NoneType] Whether or not to enable JavaScript in the context. Defaults to `true`. bypass_csp : Union[bool, NoneType] @@ -11065,7 +11065,7 @@ async def new_page( A list of permissions to grant to all pages in this context. See `browser_context.grant_permissions()` for more details. extra_http_headers : Union[Dict[str, str], NoneType] - An object containing additional HTTP headers to be sent with every request. All header values must be strings. + An object containing additional HTTP headers to be sent with every request. offline : Union[bool, NoneType] Whether to emulate network being offline. Defaults to `false`. http_credentials : Union[{username: str, password: str}, NoneType] @@ -11539,7 +11539,7 @@ async def launch_persistent_context( no_viewport : Union[bool, NoneType] Does not enforce fixed viewport, allows resizing window in the headed mode. ignore_https_errors : Union[bool, NoneType] - Whether to ignore HTTPS errors during navigation. Defaults to `false`. + Whether to ignore HTTPS errors when sending network requests. Defaults to `false`. java_script_enabled : Union[bool, NoneType] Whether or not to enable JavaScript in the context. Defaults to `true`. bypass_csp : Union[bool, NoneType] @@ -11558,7 +11558,7 @@ async def launch_persistent_context( A list of permissions to grant to all pages in this context. See `browser_context.grant_permissions()` for more details. extra_http_headers : Union[Dict[str, str], NoneType] - An object containing additional HTTP headers to be sent with every request. All header values must be strings. + An object containing additional HTTP headers to be sent with every request. offline : Union[bool, NoneType] Whether to emulate network being offline. Defaults to `false`. http_credentials : Union[{username: str, password: str}, NoneType] diff --git a/playwright/sync_api/_generated.py b/playwright/sync_api/_generated.py index 6edc4a557..9861bd14e 100644 --- a/playwright/sync_api/_generated.py +++ b/playwright/sync_api/_generated.py @@ -10619,7 +10619,7 @@ def new_context( no_viewport : Union[bool, NoneType] Does not enforce fixed viewport, allows resizing window in the headed mode. ignore_https_errors : Union[bool, NoneType] - Whether to ignore HTTPS errors during navigation. Defaults to `false`. + Whether to ignore HTTPS errors when sending network requests. Defaults to `false`. java_script_enabled : Union[bool, NoneType] Whether or not to enable JavaScript in the context. Defaults to `true`. bypass_csp : Union[bool, NoneType] @@ -10638,7 +10638,7 @@ def new_context( A list of permissions to grant to all pages in this context. See `browser_context.grant_permissions()` for more details. extra_http_headers : Union[Dict[str, str], NoneType] - An object containing additional HTTP headers to be sent with every request. All header values must be strings. + An object containing additional HTTP headers to be sent with every request. offline : Union[bool, NoneType] Whether to emulate network being offline. Defaults to `false`. http_credentials : Union[{username: str, password: str}, NoneType] @@ -10793,7 +10793,7 @@ def new_page( no_viewport : Union[bool, NoneType] Does not enforce fixed viewport, allows resizing window in the headed mode. ignore_https_errors : Union[bool, NoneType] - Whether to ignore HTTPS errors during navigation. Defaults to `false`. + Whether to ignore HTTPS errors when sending network requests. Defaults to `false`. java_script_enabled : Union[bool, NoneType] Whether or not to enable JavaScript in the context. Defaults to `true`. bypass_csp : Union[bool, NoneType] @@ -10812,7 +10812,7 @@ def new_page( A list of permissions to grant to all pages in this context. See `browser_context.grant_permissions()` for more details. extra_http_headers : Union[Dict[str, str], NoneType] - An object containing additional HTTP headers to be sent with every request. All header values must be strings. + An object containing additional HTTP headers to be sent with every request. offline : Union[bool, NoneType] Whether to emulate network being offline. Defaults to `false`. http_credentials : Union[{username: str, password: str}, NoneType] @@ -11286,7 +11286,7 @@ def launch_persistent_context( no_viewport : Union[bool, NoneType] Does not enforce fixed viewport, allows resizing window in the headed mode. ignore_https_errors : Union[bool, NoneType] - Whether to ignore HTTPS errors during navigation. Defaults to `false`. + Whether to ignore HTTPS errors when sending network requests. Defaults to `false`. java_script_enabled : Union[bool, NoneType] Whether or not to enable JavaScript in the context. Defaults to `true`. bypass_csp : Union[bool, NoneType] @@ -11305,7 +11305,7 @@ def launch_persistent_context( A list of permissions to grant to all pages in this context. See `browser_context.grant_permissions()` for more details. extra_http_headers : Union[Dict[str, str], NoneType] - An object containing additional HTTP headers to be sent with every request. All header values must be strings. + An object containing additional HTTP headers to be sent with every request. offline : Union[bool, NoneType] Whether to emulate network being offline. Defaults to `false`. http_credentials : Union[{username: str, password: str}, NoneType] diff --git a/setup.py b/setup.py index ef8fa221b..ddc354db0 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.15.0-1632336523000" +driver_version = "1.15.0-1633020276000" def extractall(zip: zipfile.ZipFile, path: str) -> None: