Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在邮递员中编写了测试。
现在我想在我的脚本完成后清理所有 env 变量。
我不想使用以下命令一一清除它们:
postman.clearEnvironmentVariable("key");
是否有任何命令可以清除我所有的环境变量键作为清理过程而不删除我的环境。
你可以看看这里并尝试使用pm.globals.clear()或pm.environment.clear()
pm.globals.clear()
pm.environment.clear()
希望这可以帮助