Class ResponseReceivedEarlyHints

java.lang.Object
org.openqa.selenium.devtools.v141.network.model.ResponseReceivedEarlyHints

@Beta public class ResponseReceivedEarlyHints extends Object
Fired when 103 Early Hints headers is received in addition to the common response. Not every responseReceived event will have an responseReceivedEarlyHints fired. Only one responseReceivedEarlyHints may be fired for eached responseReceived event.
  • Constructor Details

    • ResponseReceivedEarlyHints

      public ResponseReceivedEarlyHints(RequestId requestId, Headers headers)
  • Method Details

    • getRequestId

      public RequestId getRequestId()
      Request identifier. Used to match this information to another responseReceived event.
    • getHeaders

      public Headers getHeaders()
      Raw response headers as they were received over the wire. Duplicate headers in the response are represented as a single key with their values concatentated using `\n` as the separator. See also `headersText` that contains verbatim text for HTTP/1.*.