如何处理 Jmeter 测试
How to handle Jmeter tests
测量(基于网络的应用程序)的加载时间
当用户点击 link 时,基于 Web 的应用程序向服务器发送请求
我尝试接受上面的 post 请求并在带有条件的 While 循环控制器下循环它。
但是 while 循环只是永远循环。
这些 requestId
动态变量可能有以下来源:
- 它可能作为 redirection
的结果出现在响应 URL 中
- 它可能出现在响应中 headers
- 它可能出现在响应正文中
- 它是在客户端(浏览器)使用JavaScript
生成的
在前 3 种情况下,您需要使用合适的 post-processor, in 4th case you need to replicate the JavaScript code which is generating the value using JSR223 PreProcessor and Groovy language
关联值
我们无法对您的 While Controller 问题发表任何评论,除了非常明显的声明,即 While Controller 将执行其子(ren)直到 variable or function which you put in the "Condition" are resolves to true
, the evaluation result including any nested variables can be observed using i.e. Debug Sampler
测量(基于网络的应用程序)的加载时间
当用户点击 link 时,基于 Web 的应用程序向服务器发送请求
我尝试接受上面的 post 请求并在带有条件的 While 循环控制器下循环它。 但是 while 循环只是永远循环。
这些 requestId
动态变量可能有以下来源:
- 它可能作为 redirection 的结果出现在响应 URL 中
- 它可能出现在响应中 headers
- 它可能出现在响应正文中
- 它是在客户端(浏览器)使用JavaScript 生成的
在前 3 种情况下,您需要使用合适的 post-processor, in 4th case you need to replicate the JavaScript code which is generating the value using JSR223 PreProcessor and Groovy language
关联值我们无法对您的 While Controller 问题发表任何评论,除了非常明显的声明,即 While Controller 将执行其子(ren)直到 variable or function which you put in the "Condition" are resolves to true
, the evaluation result including any nested variables can be observed using i.e. Debug Sampler