Security.setOverrideCertificateErrorsEnable/disable overriding certificate errors. If enabled, all certificate error events need to be handled by the DevTools client and should be answered with `handleCertificateError` commands.
| Name | Type | Description |
|---|---|---|
override | boolean | If true, certificate errors will be overridden. |
{
"id": 1,
"method": "Security.setOverrideCertificateErrors",
"params": {
"override": true
}
}
{
"id": 1,
"result": {}
}
const result = await send('Security.setOverrideCertificateErrors', {"override": true});
console.log(result);