如何在GATLING中获取javascript变量值

时间:2019-04-05 12:55:09

标签: scala testing performance-testing gatling scala-gatling

我有一个响应正文,我需要一些特殊的javascript值。(__ processUniqueID) 我该怎么办?

加特林2.3.1版本

<script type="text/javascript">
var __processUniqueID = '06c199ab-**********';
var __isDocument = false;
var __isDMSDifference = false;
var __hasSanction = false;
</script>

我要输出“ 06c199ab-**********”。

1 个答案:

答案 0 :(得分:0)

您可以使用正则表达式检查:

.exec(
  http("Get Javascript")
    .post("my/endpoint")
    .check(status.is(200))
    .check(regex("""var __processUniqueId = \'(.*)\';""").find.saveAs("my_value"))
)

这将解析响应正文并将匹配的组保存在会话中的键my_value下。

请参阅文档: