ssl certificate error

Solutions on MaxInterview for ssl certificate error by the best coders in the world

showing results for - "ssl certificate error"
Leaf
09 Jul 2020
1SSL is a standard security protocol for establishing secure connection between
2the SERVER and CLIENT. When secure connection is not established due to
3certificate SSL error will occur and to handle it We need to create 
4instance of DesiredCapabilities class :
5
6
7for UI of CHROME, IE -> 
8        DesiredCapabilities handlSSLErr = DesiredCapabilities.chrome()
9        handlSSLErr.setCapability ((CapabilityType.ACCEPT_SSL_CERTS, true)
10        WebDriver driver = new ChromeDriver(handlSSLErr);
11
similar questions
queries leading to this page
ssl certificate error