diff --git a/playwright/async_api/_generated.py b/playwright/async_api/_generated.py index b592d5971..a38b0bee7 100644 --- a/playwright/async_api/_generated.py +++ b/playwright/async_api/_generated.py @@ -6450,7 +6450,8 @@ def workers(self) -> typing.List["Worker"]: def request(self) -> "APIRequestContext": """Page.request - API testing helper associated with this page. Requests made with this API will use page cookies. + API testing helper associated with this page. This method returns the same instance as + `browser_context.request` on the page's context. See `browser_context.request` for more details. Returns ------- diff --git a/playwright/sync_api/_generated.py b/playwright/sync_api/_generated.py index d134c246b..0f36da812 100644 --- a/playwright/sync_api/_generated.py +++ b/playwright/sync_api/_generated.py @@ -6273,7 +6273,8 @@ def workers(self) -> typing.List["Worker"]: def request(self) -> "APIRequestContext": """Page.request - API testing helper associated with this page. Requests made with this API will use page cookies. + API testing helper associated with this page. This method returns the same instance as + `browser_context.request` on the page's context. See `browser_context.request` for more details. Returns ------- diff --git a/setup.py b/setup.py index efd2a600d..81f63f76b 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ InWheel = None from wheel.bdist_wheel import bdist_wheel as BDistWheelCommand -driver_version = "1.20.0" +driver_version = "1.20.1" def extractall(zip: zipfile.ZipFile, path: str) -> None: