chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.security.events / SecurityEvent / CertificateErrorEvent

CertificateErrorEvent

data class CertificateErrorEvent : SecurityEvent
Deprecated: Deprecated in the Chrome DevTools protocol

There is a certificate error. If overriding certificate errors is enabled, then it should be handled with the handleCertificateError command. Note: this event does not fire if the certificate error has been allowed internally. Only one client per target should override certificate errors at the same time.

Official doc

Constructors

<init>

There is a certificate error. If overriding certificate errors is enabled, then it should be handled with the handleCertificateError command. Note: this event does not fire if the certificate error has been allowed internally. Only one client per target should override certificate errors at the same time.

CertificateErrorEvent(eventId: Int, errorType: String, requestURL: String)

Properties

errorType

The type of the error.

val errorType: String

eventId

The ID of the event.

val eventId: Int

requestURL

The url that was requested.

val requestURL: String