webrtc / KITE

KITE is a test engine designed to test WebRTC interoperability across browsers
Apache License 2.0
464 stars 125 forks source link

Ignore-Certificate-Errors for Google Web Driver #154

Closed LexFTW closed 3 years ago

LexFTW commented 3 years ago

I am trying to prepare a test pointing to a URL that does not have the signed SSL certificate, I have read that Google Chrome has a command to avoid blockages called --ignore-certificate-errors, how could you extrapolate it to the web driver?

namvuCosmo commented 3 years ago

Hi,

You can try something like this:

    {
      "browserName": "chrome",
      "platform": "WINDOWS",
      "version": "84",
      "flags": [
            "ignore-certificate-errors"
      ]
    }

Have you tried this flags with normal chrome?

Also, without SSL, last time I checked, webrtc API for getUserMedia() will not work. Keep this in mind if you're doing stuff with webrtc :)

LexFTW commented 3 years ago

Thanks, in my case I was using an unsigned certificate for SSL, but I got this error anyway and I was not figuring out how to fix it, now with this solution you have given me no more problems