Our programs utilize SSL certificates and we are unable to bypass Chrome's prompt for selecting a certificate. We would be satisfied with simply choosing the one certificate needed. Attempts have been made using this code:
capabilities: {
browserName: 'chrome',
chromeOptions: {
args: ['--disable-remote-fonts', '--start-maximized', '--ignore-certificate-errors']
},
trustAllSSLCertificates: true,
acceptInsecureCerts: true,
ACCEPT_SSL_CERTS: true,
}
This method does not succeed, as the browser opens and remains stuck on the certificate selection screen even though there is only one certificate available. It's frustrating that a solution for this issue seems elusive in Protractor. Any suggestions?