我尝试使用Paw自动进行身份验证并执行此操作我需要
但我不知道该怎么做......
有人有想法吗?
由于
答案 0 :(得分:3)
在爪子中首先将请求设置到登录页面。然后在第二个请求中,您可以评估第一个请求的响应主体:我们可以对另一个请求的原始响应使用正则表达式过滤器。
然后使用下面的代码设置自定义动态值。
function evaluate(context){
// Set up your regex to extract the token
var re = /<h2>([^<]+)<\/h2>/;
// Replace the 'Login page' with your request name
var request = context.getRequestByName('Login page')
var lastExchange = request.getLastExchange()
var body = lastExchange.responseBody
var m = re.exec(body)
return m[1]
};
&#13;