如何防止 WebLOAD wlHttp 模块在收到非 200 状态码时中止轮次?



我最近接到了在 WebLOAD 中工作的任务,以测试 API 的功能。 由于项目的要求,WebLOAD 的替代方案不能用于任务。

我负责编写的一些测试用例涉及提交格式错误的请求并确保返回 400 响应代码。 我的问题是,每次收到非 200 响应时,wlHttp 都会在控制台中抛出错误并中止当前轮次。

我尝试过用尝试/捕获来包围wlHttp.Get电话,但这不起作用。 任何帮助将不胜感激,因为从本文档来看,似乎在收到非 200 状态代码后应该可以继续。

下面是一个 MVP,类似于我为测试用例编写的代码。 在控制台输出(在 MVP 下方(中,您可以看到记录了"1",但是在记录有关 400 的错误后立即停止执行,console.log("2")从未运行过。

function InitAgenda() {
wlGlobals.GetFrames = false;
wlGlobals.SaveSource = true;
wlGlobals.SaveHeaders = true;
}
/***** WLIDE - ID:5 - JavaScript *****/
wlHttp.ContentType = "application/json";
console.log("1");
wlHttp.Get("https://httpstat.us/400");
console.log("2");
// END WLIDE
0.00        *** Script Execution Start Time:  Thu Aug 15 17:15:56 2019 ***  
0.33        Start round 1 (1 of 1)  
0.34        1   
0.76        400 Bad request. Requested URL: https://httpstat.us/400. in main_agenda at line 15  
1.85        End round 1 (1 of 1)    
2.06        *** Script Execution End Time:  Thu Aug 15 17:15:58 2019 ***    
2.06        Test Failed: The number of errors is equal to or greater than 1.    

你应该使用wlHttp.ReportHttpErrors=false.

使用 document.wlStatusNumber 检查响应。

请参阅示例:

function InitAgenda()
{
wlGlobals.GetFrames = false;
wlGlobals.SaveSource = true;
wlGlobals.SaveHeaders = true;
}
/***** WLIDE - ID:5 - JavaScript *****/
wlHttp.ContentType = "application/json";
console.log("1");
wlHttp.ReportHttpErrors=false
wlHttp.Get("https://httpstat.us/400");
if (document.wlStatusNumber != 400) {
WarningMessage("hmm, expected 400 but got " + document.wlStatusNumber + ", " + document.wlStatusLine)
}
console.log("2");

最新更新