Package io.webfolder.cdp.command
Interface Audits
-
public interface Audits
Audits domain allows investigation of page violations and possible improvements
-
-
Method Summary
Modifier and Type Method Description GetEncodedResponseResult
getEncodedResponse(java.lang.String requestId, Encoding encoding)
Returns the response body and size if it were re-encoded with the specified settings.GetEncodedResponseResult
getEncodedResponse(java.lang.String requestId, Encoding encoding, java.lang.Double quality, java.lang.Boolean sizeOnly)
Returns the response body and size if it were re-encoded with the specified settings.
-
-
-
Method Detail
-
getEncodedResponse
GetEncodedResponseResult getEncodedResponse(java.lang.String requestId, Encoding encoding, java.lang.Double quality, java.lang.Boolean sizeOnly)
Returns the response body and size if it were re-encoded with the specified settings. Only applies to images.- Parameters:
requestId
- Identifier of the network request to get content for.encoding
- The encoding to use.quality
- The quality of the encoding (0-1). (defaults to 1)sizeOnly
- Whether to only return the size information (defaults to false).- Returns:
- GetEncodedResponseResult
-
getEncodedResponse
GetEncodedResponseResult getEncodedResponse(java.lang.String requestId, Encoding encoding)
Returns the response body and size if it were re-encoded with the specified settings. Only applies to images.- Parameters:
requestId
- Identifier of the network request to get content for.encoding
- The encoding to use.- Returns:
- GetEncodedResponseResult
-
-