class Playwright::Request::RequestTiming

Included Modules

Defined in:

playwright/request.cr

Constructors

Instance Method Summary

Constructor Detail

def self.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) #

[View source]
def self.new(pull : JSON::PullParser) #

[View source]

Instance Method Detail

def connect_end : Int32 #

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.


[View source]
def connect_start : Int32 #

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.


[View source]
def domain_lookup_end : Int32 #

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.


[View source]
def domain_lookup_start : Int32 #

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.


[View source]
def request_start : Int32 #

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.


[View source]
def 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. The value is given in milliseconds relative to startTime, -1 if not available.


[View source]
def response_start : Int32 #

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.


[View source]
def secure_connection_start : Int32 #

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.


[View source]
def start_time : Int32 #

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


[View source]