需要在jmeter中以这种方式进行相关,当没有找到值时,它不应该传递任何东西

brjng4g3  于 12个月前  发布在  其他
关注(0)|答案(1)|浏览(107)

我有几个UUID细节的情况一样-额外的数据将被添加。
所以我需要写regex的方式,就像每当发现regex表达式的值时,它应该传递相同的值。
如果没有找到regex表达式的值,则不应在该变量中传递任何内容。
可以在Jmeter正则表达式中处理吗?
“include_on_risk_plan_report”:true(.*?)},“risk_score”:
request1.“include_on_risk_plan_report”:1,“kris”:[{...}],“origin_name”response1.“include_on_risk_plan_report”:true,“kris”:[{...}]},“risk_score”:
request2.“include_on_risk_plan_report”:1,“origin_name”:“response2.“include_on_risk_plan_report”:true},“risk_score”:

s71maibg

s71maibg1#

看起来你正在使用JSON,那里没有“nothing”。
您可以通过:

Use empty default value选项中有“Default value”字段,但它可能会破坏JSON请求的有效负载:


的数据
此外,JSON is not a regular language因此使用正则表达式不是最好的主意,你可能宁愿切换到JSON Extractor

相关问题