java - How to ignore "peer not authenticated" error for RemoteWebDriver -


my selenium hub running on ssl https. certificate installed in couple of days. in testenvironment, , selenium hub running on computer within network, ignore ssl errors now.

i using remotewebdriver connect hub. keeps on giving me exception: javax.net.ssl.sslpeerunverifiedexception: peer not authenticated

how ignore error?

the htmlunitdriver gives method override like:-

@override protected webclient modifywebclient(webclient client) {      client.getoptions().setuseinsecuressl(true); } 

but need use remotewebdriver.


Comments

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -