Visual Studio - Web 测试问题 - 多次运行 1 个测试
我使用 Internet Explorer 中的浏览器记录工具在 Visual Studio 中创建了一个 Web 测试。
一旦获得 Web 测试,我就可以重播测试并确保步骤正确运行。
现在我想做的是运行测试 N 次。 (我的目标是能够捕获 10 次运行时间并确保它们都在给定范围内)。
I have created a Web-Test in Visual Studio, using the browser recording tool in Internet Explorer.
Once I have the Web-Test, I am able to replay the test and make sure that the steps run correctly.
Now what I would like to do is run the test N number of times. (my goal is to be able to capture the 10 run times and make sure they are all within a given range).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是:
测试菜单>编辑测试设置> (选择您的测试设置)>网页测试>固定运行计数
将计数设置为 10,当您重新运行测试时,它将连续运行 10 次。
但是,更好的方法是:
在 LoadTest 结果中,您将获得各种汇总统计信息,并将计算超出响应的请求数量时间目标,因此您不必手动执行此操作。
The easiest way to do this is:
Tests menu > Edit Test Settings > (choose your test settings) > Web Test > Fixed Run Count
Set the count to 10, and when you re-run your test it will run 10 times in a row.
However, the better way to do this is to:
In a LoadTest result you get various summarized statistics and it will count how many requests exceeded the response time goal, so you don't have to do this manually.