我想在Postman Native App中使用moment.js(或任何其他脚本)

时间:2017-12-22 05:20:20

标签: javascript testing native external postman

我知道Postman with Chrome Plugin的解决方案......

我的Postman with Chrome插件的解决方案是 在我的mbp上 我只是添加这些行也将moment.min.js(或任何javascript文件)作为路径描述

~/Library/Application Support/Google/Chrome/Default/Extensions/fhbjgbiflinjbdggehcddcbncdddomop/5.4.0_0/html/

在路径

tester_sandbox.html

在文件中

requester.html

能够在"测试中使用时刻" 或

$DOM->getElementsByTagName('a'); // for tag name


$DOM->getElementsByName('fb_dtsg'); // for name


document.getElementById('fb_dtsg_id').value // for showing value of the field

能够在"预先请求脚本"

中使用时刻

但我无法找到Postman Native App保留这些文件路径的位置....

我已经尝试过在谷歌上发现的另一种解决方案 将脚本添加为GlobalVariable,然后将eval添加到" Tests"但它仍然不起作用......

任何想法或任何推荐......

感谢

1 个答案:

答案 0 :(得分:7)

要使用片刻,您需要将其添加到预先请求脚本或测试标签的顶部

var moment = require('moment')

然后您可以按照文档使用该模块。

moment().add(2, 'days').format()

或者你需要什么......