如何从jmeter中的响应标头读取Location的值?

时间:2019-05-30 13:19:46

标签: jmeter-5.0

我低于标题响应:-

HTTP/1.1 202 Accepted
Content-Length: 0
Location: https://localhost:111/api_path/916e0a93-552f-46fd-84c4-6cecac92209a
Server: Microsoft-IIS/10.0
X-SourceFiles: =?UTF-8?B?RDpcR2l0SHViXFJNTVxFZGdlUHJvdG90eXBlXEVkZ2VQcm90b3R5cGVcYXBpXHYxXFNubXBcR2V0VjFBc3luYw==?=
X-Powered-By: ASP.NET
Date: Thu, 30 May 2019 13:13:24 GMT

如何使用正则表达式从Location捕获以下值?

916e0a93-552f-46fd-84c4-6cecac92209a

我没有将响应保存在文件中,而是需要响应头中的位置值

我尝试了以下方式,但是由于默认设置未找到,所以如果我删除默认设置,它将显示null

enter image description here

1 个答案:

答案 0 :(得分:0)

将正则表达式替换为

Location: https:.+api_path\/(.*?)\n

确保您使用应用于 Main sample only