Runscope 复数初始变量

Runscope complex initial variable

如何为我的测试初始化​​复杂的初始变量。类似于:

variables.set("token", md5("something" + md5("something" + somevalue + "some other value") + "some value one more time" + someVal));

Dmytro,几乎与您描述的完全一样。 Runscope 提供了 CryptoJS 库,您可以这样做:

var someValue = "woot";
variables.set("token", CryptoJS.MD5("something" + 
  CryptoJS.MD5("foo1" + someValue + "someOtherValue").toString() +
  "foo2" + someValue).toString());

完整的 Runscope 脚本文档是 here