13
17

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

JMeterでサーバから受け取ったJSONデータを変数に設定する

Posted at

BSF Listenerを使う
ScriptLanguageにjavascriptを設定

script.js
var body = JSON.parse(sampleResult.getResponseDataAsString())
log.info(body); // ツール -> ログビューアでログが見える
var data = body.data[0].list[0];
var foo = data.foo;
var weapons = data.weapons;
vars.put('foo', foo);

${foo} とすると参照できる

13
17
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
17

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?