handleCertificateError method

  1. @Deprecated('This command is deprecated')
Future<void> handleCertificateError(
  1. int eventId,
  2. CertificateErrorAction action
)

Handles a certificate error that fired a certificateError event. eventId The ID of the event. action The action to take on the certificate error.

Implementation

@Deprecated('This command is deprecated')
Future<void> handleCertificateError(
    int eventId, CertificateErrorAction action) async {
  await _client.send('Security.handleCertificateError', {
    'eventId': eventId,
    'action': action,
  });
}