Class ResponseReceivedExtraInfo
- java.lang.Object
-
- org.openqa.selenium.devtools.v98.network.model.ResponseReceivedExtraInfo
-
@Beta public class ResponseReceivedExtraInfo extends java.lang.ObjectFired when additional information about a responseReceived event is available from the network stack. Not every responseReceived event will have an additional responseReceivedExtraInfo for it, and responseReceivedExtraInfo may be fired before or after responseReceived.
-
-
Constructor Summary
Constructors Constructor Description ResponseReceivedExtraInfo(RequestId requestId, java.util.List<BlockedSetCookieWithReason> blockedCookies, Headers headers, IPAddressSpace resourceIPAddressSpace, java.lang.Integer statusCode, java.util.Optional<java.lang.String> headersText)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<BlockedSetCookieWithReason>getBlockedCookies()A list of cookies which were not stored from the response along with the corresponding reasons for blocking.HeadersgetHeaders()Raw response headers as they were received over the wire.java.util.Optional<java.lang.String>getHeadersText()Raw response header text as it was received over the wire.RequestIdgetRequestId()Request identifier.IPAddressSpacegetResourceIPAddressSpace()The IP address space of the resource.java.lang.IntegergetStatusCode()The status code of the response.
-
-
-
Constructor Detail
-
ResponseReceivedExtraInfo
public ResponseReceivedExtraInfo(RequestId requestId, java.util.List<BlockedSetCookieWithReason> blockedCookies, Headers headers, IPAddressSpace resourceIPAddressSpace, java.lang.Integer statusCode, java.util.Optional<java.lang.String> headersText)
-
-
Method Detail
-
getRequestId
public RequestId getRequestId()
Request identifier. Used to match this information to another responseReceived event.
-
getBlockedCookies
public java.util.List<BlockedSetCookieWithReason> getBlockedCookies()
A list of cookies which were not stored from the response along with the corresponding reasons for blocking. The cookies here may not be valid due to syntax errors, which are represented by the invalid cookie line string instead of a proper cookie.
-
getHeaders
public Headers getHeaders()
Raw response headers as they were received over the wire.
-
getResourceIPAddressSpace
public IPAddressSpace getResourceIPAddressSpace()
The IP address space of the resource. The address space can only be determined once the transport established the connection, so we can't send it in `requestWillBeSentExtraInfo`.
-
getStatusCode
public java.lang.Integer getStatusCode()
The status code of the response. This is useful in cases the request failed and no responseReceived event is triggered, which is the case for, e.g., CORS errors. This is also the correct status code for cached requests, where the status in responseReceived is a 200 and this will be 304.
-
getHeadersText
public java.util.Optional<java.lang.String> getHeadersText()
Raw response header text as it was received over the wire. The raw text may not always be available, such as in the case of HTTP/2 or QUIC.
-
-