api 测试工具 hoppscotch 使用记录

0 阅读1分钟

hoppscotch 是一个 体积很小 大小只有 65M,但是功能很强的 api 测试工具,登陆不是强制的。

下载地址: hoppscotch.com/download

文档地址: docs.hoppscotch.io/documentati…

点击 如图示图标添加 环境变量

image.png

image.png

引用环境变量的 语法形式 <<host>> 使用双尖括号 语法如图示:

image.png

使用 脚本修改 环境变量的值:

hopp.test("Response structure", () => {

const data = hopp.response.body.asJSON();

hopp.expect(data).to.have.property('token')

hopp.env.set('token', data.token)

})