This reverts commit b7ed4d7b9e.
This commit is contained in:
parent
565aed6c39
commit
b75483bbb4
|
|
@ -288,10 +288,15 @@ Returns the matching [Response] object, or `null` if the response was not receiv
|
|||
## method: Request.serviceWorker
|
||||
* since: v1.24
|
||||
* langs: js
|
||||
* deprecated: Requests made by a Service Worker are not reported in Playwright.
|
||||
- returns: <[null]|[Worker]>
|
||||
|
||||
This method will always return `null`.
|
||||
The Service [Worker] that is performing the request.
|
||||
|
||||
**Details**
|
||||
|
||||
This method is Chromium only. It's safe to call when using other browsers, but it will always be `null`.
|
||||
|
||||
Requests originated in a Service Worker do not have a [`method: Request.frame`] available.
|
||||
|
||||
## async method: Request.sizes
|
||||
* since: v1.15
|
||||
|
|
|
|||
10
packages/playwright-core/types/types.d.ts
vendored
10
packages/playwright-core/types/types.d.ts
vendored
|
|
@ -19237,8 +19237,14 @@ export interface Request {
|
|||
response(): Promise<null|Response>;
|
||||
|
||||
/**
|
||||
* This method will always return `null`.
|
||||
* @deprecated Requests made by a Service Worker are not reported in Playwright.
|
||||
* The Service {@link Worker} that is performing the request.
|
||||
*
|
||||
* **Details**
|
||||
*
|
||||
* This method is Chromium only. It's safe to call when using other browsers, but it will always be `null`.
|
||||
*
|
||||
* Requests originated in a Service Worker do not have a
|
||||
* [request.frame()](https://playwright.dev/docs/api/class-request#request-frame) available.
|
||||
*/
|
||||
serviceWorker(): null|Worker;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue