JQuery元素定位
1.輸入"$",查看頁面是否支持JQuery元素定位,如果不支持,則使用documen.querySelecttor('Input');
2.使用$('#username').length 查看元素username的個數;

3.使用$('input[name=lt]').val()獲取到It值
4.在postman使用html界面定位到元素:
如:
const $ = cheerio.load(responseBody); //調用cheerio方法,獲取到responseBody
console.log($('input[name=lt]').val());
pm.globals.set("lt", $('input[name=lt]').val());
5.cheerio方法的使用,參考:https://cheerio.js.org/這個庫