Package com.microsoft.playwright.options
Class Timing
java.lang.Object
com.microsoft.playwright.options.Timing
-
Field Summary
FieldsModifier and TypeFieldDescriptiondoubleTime immediately before the user agent starts establishing the connection to the server to retrieve the resource.doubleTime immediately before the user agent starts establishing the connection to the server to retrieve the resource.doubleTime immediately after the browser starts the domain name lookup for the resource.doubleTime immediately before the browser starts the domain name lookup for the resource.doubleTime immediately before the browser starts requesting the resource from the server, cache, or local resource.doubleTime immediately after the browser receives the last byte of the resource or immediately before the transport connection is closed, whichever comes first.doubleTime immediately after the browser receives the first byte of the response from the server, cache, or local resource.doubleTime immediately before the browser starts the handshake process to secure the current connection.doubleRequest start time in milliseconds elapsed since January 1, 1970 00:00:00 UTC -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
startTime
public double startTimeRequest start time in milliseconds elapsed since January 1, 1970 00:00:00 UTC -
domainLookupStart
public double domainLookupStartTime 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 domainLookupEndTime 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 connectStartTime 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 secureConnectionStartTime 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 connectEndTime 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 requestStartTime 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 responseStartTime 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 responseEndTime 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.
-
-
Constructor Details
-
Timing
public Timing()
-