Selenium Testing HTTPs Trust All certificates working for FF but not IE

前端 未结 6 1380
悲&欢浪女
悲&欢浪女 2021-01-06 05:32

I\'ve been playing arround with functional testing using Selenium RC.

I keep running into problems when the test goes to the login page of our site and switches to

6条回答
  •  无人及你
    2021-01-06 06:00

    I have not seen this error with latest version of Selenium RC i.e. 2.31.0. And if you are using:

    RemoteControlConfiguration rc= new RemoteControlConfiguration();
        rc.trustAllSSLCertificates();
        SeleniumServer server;
        server=new SeleniumServer(rc);
    

提交回复
热议问题