class Playwright::Request::RequestTiming
- Playwright::Request::RequestTiming
- Reference
- Object
Included Modules
- JSON::Serializable
Defined in:
playwright/request.crConstructors
- .new(start_time : Int32, domain_lookup_start : Int32, domain_lookup_end : Int32, connect_start : Int32, secure_connection_start : Int32, connect_end : Int32, request_start : Int32, response_start : Int32, response_end : Int32)
- .new(pull : JSON::PullParser)
Instance Method Summary
-
#connect_end : Int32
Time immediately before the user agent starts establishing the connection to the server to retrieve the resource.
-
#connect_start : Int32
Time immediately before the user agent starts establishing the connection to the server to retrieve the resource.
-
#domain_lookup_end : Int32
Time immediately after the browser starts the domain name lookup for the resource.
-
#domain_lookup_start : Int32
Time immediately before the browser starts the domain name lookup for the resource.
-
#request_start : Int32
Time immediately before the browser starts requesting the resource from the server, cache, or local resource.
-
#response_end : Int32
Time immediately after the browser receives the last byte of the resource or immediately before the transport connection is closed, whichever comes first.
-
#response_start : Int32
Time immediately after the browser starts requesting the resource from the server, cache, or local resource.
-
#secure_connection_start : Int32
Time immediately before the browser starts the handshake process to secure the current connection.
-
#start_time : Int32
Request start time in milliseconds elapsed since January 1, 1970 00:00:00 UTC
Constructor Detail
Instance Method Detail
Time immediately before the user agent starts establishing the connection to the server to retrieve the resource. The value is given in milliseconds relative to startTime
, -1 if not available.
Time immediately before the user agent starts establishing the connection to the server to retrieve the resource. The value is given in milliseconds relative to startTime
, -1 if not available.
Time immediately after the browser starts the domain name lookup for the resource. The value is given in milliseconds relative to startTime
, -1 if not available.
Time immediately before the browser starts the domain name lookup for the resource. The value is given in milliseconds relative to startTime
, -1 if not available.
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.
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 startTime
, -1 if not available.
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 before the browser starts the handshake process to secure the current connection. The value is given in milliseconds relative to startTime
, -1 if not available.
Request start time in milliseconds elapsed since January 1, 1970 00:00:00 UTC