jmeter Wiremock -将响应体中的随机值用于postServeActions

chhqkbe1  于 2023-11-19  发布在  其他
关注(0)|答案(1)|浏览(129)

这是__admin/mappings:我的回答是:“回应”:{“status”:200,“headers”:{“Content-Type”:“application/json”},“body”:{“transactionID”:“{{randomValue length=12 type='NUMERIC'}}",“statusCode”:“S01”} }
我想在postServeActions中使用相同的随机数,如何传递?

"postServeActions" : 
 [{
    "name" : "webhook",
"parameters" : {
"method" : "POST",
"url" : "http://127.0.0.1:8081/sts/ADD?FILENAME=transactions.txt&LINE=<transactionID>&ADD_MODE=FIRST&UNIQUE=TRUE"
    }
}]

字符串
(未试)

vlurs2pr

vlurs2pr1#

如果您的问题与Wiremock有关,根据Response Templating - Random Values,您应该能够使用以下内容:

{{randomValue length=10 type='NUMERIC'}}

字符串
如果你想在JMeter中做同样的事情,你可以使用__Random()函数

${__Random(1000000000,9999999999,)}


更多关于JMeter函数概念的信息:Apache JMeter Functions - An Introduction

相关问题