加特林-如何在使用原始XML文件的帖子正文中使用供稿器

时间:2019-04-12 10:17:50

标签: gatling scala-gatling

我需要在我的加特林脚本之一中将原始xml文件用作正文。这样我们就可以尝试使用Feeder。

尝试在原始文件中包含变量名称。在Scala代码中包括Feeder。这没有用。

这是scala中的代码

val feeder = csv("data.csv")

val scn = scenario("RecordedSimulation")
        .feed(feeder)
        .during(10 seconds)
        {
        exec(http("request_0")
            .post("/MED/01_WS/phoenixxm.asmx")
            .headers(headers_0)
            .body(RawFileBody("RecordedSimulation_0000_request.txt")))
            .pause(200.milliseconds)
        }

我们如何在rawfilebody实现中进行参数化

1 个答案:

答案 0 :(得分:0)

如果要在文件中包含加特林表达式,并在发送时解析它们,则需要使用“ ELFileBody”而不是“ RawFileBody”