mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
chore: undeprecate sync headers() (#15152)
This commit is contained in:
parent
fab12c70f7
commit
8c590cb2af
@ -59,7 +59,9 @@ Returns the [Frame] that initiated this request.
|
||||
## method: Request.headers
|
||||
- returns: <[Object]<[string], [string]>>
|
||||
|
||||
**DEPRECATED** Incomplete list of headers as seen by the rendering engine. Use [`method: Request.allHeaders`] instead.
|
||||
An object with the request HTTP headers. The header names are lower-cased.
|
||||
Note that this method does not return security-related headers, including cookie-related ones.
|
||||
You can use [`method: Request.allHeaders`] for complete list of headers that include `cookie` information.
|
||||
|
||||
## async method: Request.headersArray
|
||||
- returns: <[Array]<[Object]>>
|
||||
|
||||
@ -30,7 +30,9 @@ Indicates whether this Response was fullfilled by a Service Worker's Fetch Handl
|
||||
## method: Response.headers
|
||||
- returns: <[Object]<[string], [string]>>
|
||||
|
||||
**DEPRECATED** Incomplete list of headers as seen by the rendering engine. Use [`method: Response.allHeaders`] instead.
|
||||
An object with the response HTTP headers. The header names are lower-cased.
|
||||
Note that this method does not return security-related headers, including cookie-related ones.
|
||||
You can use [`method: Response.allHeaders`] for complete list of headers that include `cookie` information.
|
||||
|
||||
## async method: Response.headersArray
|
||||
- returns: <[Array]<[Object]>>
|
||||
|
||||
14
packages/playwright-core/types/types.d.ts
vendored
14
packages/playwright-core/types/types.d.ts
vendored
@ -14858,9 +14858,10 @@ export interface Request {
|
||||
frame(): Frame;
|
||||
|
||||
/**
|
||||
* **DEPRECATED** Incomplete list of headers as seen by the rendering engine. Use
|
||||
* [request.allHeaders()](https://playwright.dev/docs/api/class-request#request-all-headers) instead.
|
||||
* @deprecated
|
||||
* An object with the request HTTP headers. The header names are lower-cased. Note that this method does not return
|
||||
* security-related headers, including cookie-related ones. You can use
|
||||
* [request.allHeaders()](https://playwright.dev/docs/api/class-request#request-all-headers) for complete list of headers
|
||||
* that include `cookie` information.
|
||||
*/
|
||||
headers(): { [key: string]: string; };
|
||||
|
||||
@ -15095,9 +15096,10 @@ export interface Response {
|
||||
fromServiceWorker(): boolean;
|
||||
|
||||
/**
|
||||
* **DEPRECATED** Incomplete list of headers as seen by the rendering engine. Use
|
||||
* [response.allHeaders()](https://playwright.dev/docs/api/class-response#response-all-headers) instead.
|
||||
* @deprecated
|
||||
* An object with the response HTTP headers. The header names are lower-cased. Note that this method does not return
|
||||
* security-related headers, including cookie-related ones. You can use
|
||||
* [response.allHeaders()](https://playwright.dev/docs/api/class-response#response-all-headers) for complete list of
|
||||
* headers that include `cookie` information.
|
||||
*/
|
||||
headers(): { [key: string]: string; };
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user