-1

I've just updated my ChromeDriver from version 78 to version 79. Now Chrome gives me a warning on all my tests and fails if I don't add the certificate as an exception in time (a have a few seconds before the test fails). I didn't have to do anything special to ChromeDriver 78, it just worked.

enter image description here

How can I get ChromeDriver 79 to work without manual intervention?

CJ Dennis
  • 4,226
  • 2
  • 40
  • 69

1 Answers1

0

DesiredCapabilities capabilities = DesiredCapabilities.chrome(); capabilities.setCapability("acceptInsecureCerts", true); driver = new ChromeDriver(capabilities);