docs(class-request.md): rephrase definition of request timing responseStart (#22170)
This commit is contained in:
parent
789d8b24c0
commit
88544d537b
|
|
@ -284,7 +284,7 @@ Returns resource size information for given request.
|
|||
to retrieve the resource. The value is given in milliseconds relative to `startTime`, -1 if not available.
|
||||
- `requestStart` <[float]> Time immediately before the browser starts requesting the resource from the server,
|
||||
cache, or local resource. The value is given in milliseconds relative to `startTime`, -1 if not available.
|
||||
- `responseStart` <[float]> Time immediately after the browser starts requesting the resource from the server,
|
||||
- `responseStart` <[float]> Time immediately after the browser receives the first byte of the response from the server,
|
||||
cache, or local resource. The value is given in milliseconds relative to `startTime`, -1 if not available.
|
||||
- `responseEnd` <[float]> Time immediately after the browser receives the last byte of the resource or immediately
|
||||
before the transport connection is closed, whichever comes first. The value is given in milliseconds relative to
|
||||
|
|
|
|||
4
packages/playwright-core/types/types.d.ts
vendored
4
packages/playwright-core/types/types.d.ts
vendored
|
|
@ -17795,8 +17795,8 @@ export interface Request {
|
|||
requestStart: number;
|
||||
|
||||
/**
|
||||
* Time immediately after the browser starts requesting the resource from the server, cache, or local resource. The
|
||||
* value is given in milliseconds relative to `startTime`, -1 if not available.
|
||||
* Time immediately after the browser receives the first byte of the response from the server, cache, or local
|
||||
* resource. The value is given in milliseconds relative to `startTime`, -1 if not available.
|
||||
*/
|
||||
responseStart: number;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue