如何在gatrin中修改csv feed文件

问题描述 投票:0回答:1

我有一个像这样的 user.csv 文件:

user, password
userid1, password1

我想解密csv文件中的密码。 一种方法是

.feed(csv("user.csv"))
然后

.exec(session => {
        val pwd = session("password").as[String]
        session.set("password", decrypt(pwd))//some function to decrypt the password
      })

现在我想在输入 csv 文件之前解密密码。加特林有没有办法做到这一点?

scala csv gatling
1个回答
1
投票

您可以使用转换给定值的函数将转换添加到供给器定义。

https://docs.gadling.io/reference/script/core/session/feeders/#transform

看起来像你的用例

© www.soinside.com 2019 - 2024. All rights reserved.