Package com.microsoft.playwright.options
Class Timing
- java.lang.Object
-
- com.microsoft.playwright.options.Timing
-
public class Timing extends Object
-
-
Field Summary
Fields Modifier and Type Field Description doubleconnectEndTime immediately before the user agent starts establishing the connection to the server to retrieve the resource.doubleconnectStartTime immediately before the user agent starts establishing the connection to the server to retrieve the resource.doubledomainLookupEndTime immediately after the browser starts the domain name lookup for the resource.doubledomainLookupStartTime immediately before the browser starts the domain name lookup for the resource.doublerequestStartTime immediately before the browser starts requesting the resource from the server, cache, or local resource.doubleresponseEndTime immediately after the browser receives the last byte of the resource or immediately before the transport connection is closed, whichever comes first.doubleresponseStartTime immediately after the browser receives the first byte of the response from the server, cache, or local resource.doublesecureConnectionStartTime immediately before the browser starts the handshake process to secure the current connection.doublestartTimeRequest start time in milliseconds elapsed since January 1, 1970 00:00:00 UTC
-
Constructor Summary
Constructors Constructor Description Timing()
-
-
-
Field Detail
-
startTime
public double startTime
Request start time in milliseconds elapsed since January 1, 1970 00:00:00 UTC
-
domainLookupStart
public double domainLookupStart
Time immediately before the browser starts the domain name lookup for the resource. The value is given in milliseconds relative tostartTime, -1 if not available.
-
domainLookupEnd
public double domainLookupEnd
Time immediately after the browser starts the domain name lookup for the resource. The value is given in milliseconds relative tostartTime, -1 if not available.
-
connectStart
public double connectStart
Time immediately before the user agent starts establishing the connection to the server to retrieve the resource. The value is given in milliseconds relative tostartTime, -1 if not available.
-
secureConnectionStart
public double secureConnectionStart
Time immediately before the browser starts the handshake process to secure the current connection. The value is given in milliseconds relative tostartTime, -1 if not available.
-
connectEnd
public double connectEnd
Time immediately before the user agent starts establishing the connection to the server to retrieve the resource. The value is given in milliseconds relative tostartTime, -1 if not available.
-
requestStart
public double requestStart
Time immediately before the browser starts requesting the resource from the server, cache, or local resource. The value is given in milliseconds relative tostartTime, -1 if not available.
-
responseStart
public double responseStart
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 tostartTime, -1 if not available.
-
responseEnd
public double responseEnd
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 tostartTime, -1 if not available.
-
-