Selenium browsermobproxy makes all webs insecure

39 Views Asked by At

I have tried to add this to the driver to avoid the problem

DesiredCapabilities desiredCapabilities = DesiredCapabilities.chrome();
desiredCapabilities.setCapability(CapabilityType.ACCEPT_SSL_CERTS, true);
desiredCapabilities.setCapability(CapabilityType.ACCEPT_INSECURE_CERTS, true);

But one time the browser mob is set up all the webs are insecure.

Any ideas what I'm missing?

0

There are 0 best solutions below