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.
我想从收到的响应中设置环境中的一些数据,女巫格式是邮递员中的 TEXT。这样做的任何想法。非常感谢,例如,突出显示的电话号码。试图将响应类型更改为 JSON,但这使事情变得更糟。
您可以使用cheerio解析脚本中收到的 HTML 响应,Tests并从解析的 HTML 中选择您想要的任何数据。
cheerio
Tests
const cheerio = require('cheerio') const $ = cheerio.load(pm.response.text()) ...