Fiddler 使用

来源:互联网 发布:超级优化基因液txt网盘 编辑:程序博客网 时间:2024/05/21 09:38
重复请求接口选中请求 右键-->Replay --> Reissue sequentially 输入执行的次数
工具栏增加请求时间Rules --> Customize Rules  增加下面代码function BeginRequestTime(oS: Session)    {        if (oS.Timers != null)        {            return oS.Timers.ClientBeginRequest.ToString();             }        return String.Empty;    }    public static BindUIColumn("Time Taken")    function CalcTimingCol(oS: Session){        var sResult = String.Empty;        if ((oS.Timers.ServerDoneResponse > oS.Timers.ClientDoneRequest))        {            sResult = (oS.Timers.ServerDoneResponse - oS.Timers.ClientDoneRequest).ToString();        }        return sResult;    }
原创粉丝点击