还未发布过话题
  • @terrychow 2853903588 烦请添加下,谢谢!😀 👍

  • @terrychow 或者你组织个群加进去共同讨论也可!

  • @terrychow 顾名思义就是业务组合测试或者叫场景测试,单一线程组里多个 http 的 request 请求,相互关联用正则取值上一个接口内容,但是有一个问题,就是 sample 统计实际的接口是存在误差的。能否加 Q 细聊一下?

  • @terrychow 👍 非常感谢!不知能否将 build.xml 及配置的 xml 内容提供参考下

  • @terrychow jmeter-results-detail-report_21.xsl 和 jmeter.results.shanhe.me.xsl 在 build.xml 中调用才可生成 html 报告
    格式如:



    那么如你所说生成两份报告,如果直接添加则对应提示错误:
    [xslt] [Fatal Error] jmeter.results.shanhe.me.xsl:121:26: 元素类型 "xsl:if"
    必须后跟属性规范 ">" 或 "/>"。无法生成
    不知你这里如何实现两份 html 的生成,还有页面的跳转:

    Designed for use with JMeter and Ant.变更为第二份详细的怎么判断跳转你生成的报告?
  • @jxxgxldl 只单纯的显示 summary 内容很简单,



    <xsl:value-of select="$titleReport"></xsl:value-of>

    body {
    font:normal 68% verdana,arial,helvetica;
    color:#000000;
    }
    table tr td, table tr th {
    font-size: 68%;
    }
    table.details tr th{
    color: #000000;
    font-weight: bold;
    text-align:center;
    background:#1E90FF;
    white-space: nowrap;
    }
    table.details tr td{
    background:#eeeee0;
    white-space: nowrap;
    }
    h1 {
    margin: 0px 0px 5px; font: 165% verdana,arial,helvetica
    }
    h2 {
    margin-top: 1em; margin-bottom: 0.5em; font: bold 125% verdana,arial,helvetica
    }
    h3 {
    margin-bottom: 0.5em; font: bold 115% verdana,arial,helvetica
    }
    .Failure {
    font-weight:bold; color:red;
    }

    img
    {
    border-width: 0px;
    }

    .expand_link
    {
    position=absolute;
    right: 0px;
    width: 27px;
    top: 1px;
    height: 27px;
    }

    .page_details
    {
    display: none;
    }

    .page_details_expanded
    {
    display: block;
    display/* hide this definition from IE5/6 */: table-row;
    }








    /xsl:template








    Date report: Designed for XXX



    /xsl:template


    Summary




















    xsl:choose
    Failure/xsl:when
    /xsl:choose
    /xsl:attribute









    Total Success Failures Success Rate Failures Rate MedianTime









    /xsl:call-template



    /xsl:call-template



    /xsl:call-template

    /xsl:template




    /xsl:template




    /xsl:template
    但怎么合入 jmeter.results.shanhe.me.xsl?

  • @zsx10110 原 jmeter-results-detail-report_21.xsl 和 jmeter.results.shanhe.me.xsl 两个的格式都不一样,如果只是拷贝 summary 没办法正常读取,css 的调整能否提供下思路!