class

Playwright::Request::RequestTiming

Inherits JSON::Serializable / Reference / Object

Constructors

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)
Source
new(*, __pull_for_json_serializable pull : JSON::PullParser)
Source

Instance methods

connect_end

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.

Source
connect_start

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.

Source
domain_lookup_end

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.

Source
domain_lookup_start

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.

Source
request_start

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.

Source
response_end

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.

Source
response_start

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.

Source
secure_connection_start

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.

Source
start_time

Request start time in milliseconds elapsed since January 1, 1970 00:00:00 UTC

Source