Class Timing

java.lang.Object
com.microsoft.playwright.options.Timing

public class Timing extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    double
    Time immediately before the user agent starts establishing the connection to the server to retrieve the resource.
    double
    Time immediately before the user agent starts establishing the connection to the server to retrieve the resource.
    double
    Time immediately after the browser starts the domain name lookup for the resource.
    double
    Time immediately before the browser starts the domain name lookup for the resource.
    double
    Time immediately before the browser starts requesting the resource from the server, cache, or local resource.
    double
    Time immediately after the browser receives the last byte of the resource or immediately before the transport connection is closed, whichever comes first.
    double
    Time immediately after the browser receives the first byte of the response from the server, cache, or local resource.
    double
    Time immediately before the browser starts the handshake process to secure the current connection.
    double
    Request start time in milliseconds elapsed since January 1, 1970 00:00:00 UTC
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • 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 to startTime, -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 to startTime, -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 to startTime, -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 to startTime, -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 to startTime, -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 to startTime, -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 to startTime, -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 to startTime, -1 if not available.
  • Constructor Details

    • Timing

      public Timing()