Hi,
I'm running an integration test for a Chrome feature using chromedriver. During the test chromedriver will contact a Google server. That request failed, error is ERR_SSL_CLIENT_AUTH_CERT_NEEDED in the netlog.
Is this that the server is complaining that chromedriver has not authenticated itself, or something else? I'm trying to see what's the fix, or even before that, the fix should be at the chromedriver side or that server?
More details:
In the netlog, after the SOCKET event, there is a CERT_VERIFIER_JOB event, I think it is the corresponding SSL error of ERR_SSL_CLIENT_AUTH_CERT_NEEDED, this CERT_VERIFIDER_JOB says:
--> cert_status = 4 (AUTHORITY_INVALID)
--> is_issued_by_known_root = false
--> net_error = -202 (ERR_CERT_AUTHORITY_INVALID)
--> public_key_hashes = []
-
-> scts = {"scts":[]}
Chromedriver has been started with flags "--ignore-certificate-errors" and "--disable-web-security".
Thanks.