报告名称未显示在在线负载测试的页面结果中

报告名称未显示在在线负载测试的页面结果中

本文介绍了报告名称未显示在在线负载测试的页面结果中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


我正在使用Visual Studio Team Services进行负载测试。


我编写了网络测试代码并使用了报告用于标识和分组请求的名称。


例如


WebTestRequest req = new WebTestRequest(WebURL);


req.ReportingName =" Download File" ;;


yield return req;


当我在本地运行负载测试时,它确实在页面结果URL下显示下载文件


但在使用团队进行在线负载测试期间服务,没有"下载文件"条目页面结果


我们非常感谢您解决此问题的任何帮助。





























































 


解决方案

Hi,

I am using Visual Studio Team Services for Load Testing.

I have coded web tests and I use Reporting Name to identify and group requests.

e.g.

WebTestRequest req = new WebTestRequest(WebURL);

req.ReportingName = "Download File";

yield return req;

When I run load test locally it does show Download File under Page Results URL

But during Online Load Test using Team Services, there is no entry with "Download File" under Page Results

Any help to resolve this issue is appreciated.

 

解决方案


这篇关于报告名称未显示在在线负载测试的页面结果中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 13:08