美文网首页性能的自动化测试
ssl双向认证的loadrunner脚本编写

ssl双向认证的loadrunner脚本编写

作者: 池边树下 | 来源:发表于2019-01-07 13:38 被阅读19次

    添加:

    web_set_sockets_option("SSL_VERSION","TLS");  //定义TLS版本
        
    web_set_certificate_ex(  //添加证书pem文件
      "CertFilePath=client.cert.pem", 
      "CertFormat=PEM",
      "KeyFilePath=client.key.pem",
      "KeyFormat=PEM",
      "Password=123456",
      "CertIndex=1",
    LAST);
    

    相关文章

      网友评论

        本文标题:ssl双向认证的loadrunner脚本编写

        本文链接:https://www.haomeiwen.com/subject/igkurqtx.html