Package com.microsoft.playwright.options
Class Sizes
- java.lang.Object
-
- com.microsoft.playwright.options.Sizes
-
public class Sizes extends Object
-
-
Field Summary
Fields Modifier and Type Field Description intrequestBodySizeSize of the request body (POST data payload) in bytes.intrequestHeadersSizeTotal number of bytes from the start of the HTTP request message until (and including) the double CRLF before the body.intresponseBodySizeSize of the received response body (encoded) in bytes.intresponseHeadersSizeTotal number of bytes from the start of the HTTP response message until (and including) the double CRLF before the body.
-
Constructor Summary
Constructors Constructor Description Sizes()
-
-
-
Field Detail
-
requestBodySize
public int requestBodySize
Size of the request body (POST data payload) in bytes. Set to 0 if there was no body.
-
requestHeadersSize
public int requestHeadersSize
Total number of bytes from the start of the HTTP request message until (and including) the double CRLF before the body.
-
responseBodySize
public int responseBodySize
Size of the received response body (encoded) in bytes.
-
responseHeadersSize
public int responseHeadersSize
Total number of bytes from the start of the HTTP response message until (and including) the double CRLF before the body.
-
-