我启动这个命令:java -jar "D:/FTP/stm_atos_automatisation/selenium-server-standalone-2.39.0.jar" -trustAllSSLCertificates -userExtensions "D:/FTP/stm_atos_automatisation/user-extensions.js" -htmlSuite "*firefox D:/FTP/stm_atos_automatisation/navigateurs/ff39/firefox.exe" "https://zed330z7:59443/stm_ihm/" "D:/FTP/stm_atos_automatisation/Suites/Serveur/Total_Courbes.htm" "D:/FTP/stm_atos_automatisation/rapports/ff39/rapport.html"
FireFox启动,但它停止了,因为在版本39中添加了两个SSL3。手动停用两个SSL3和FireFox。
我想通过配置它的profile.Can来自动停用它,你能给我下面的方法吗?
之后,我将从Jenkins启动相同的测试。
提前感谢
诚挚的问候,
发布于 2015-08-04 02:45:57
我假设“两个SSL3相加”是指FF的about:config的security.ssl3.<...>加密算法条目。
FF的首选项存储在<FF profile>/prefs.js.中,添加(如果不存在)或调整(如果存在)一行,如下所示:
user_pref("security.ssl3.ecdhe_ecdsa_aes_128_gcm_sha256", false);https://stackoverflow.com/questions/31784010
复制相似问题