是如何利用LoadRunner判断HTTP服务器的返回状态.

第一种方法是利用LR的内置函数web_get_int_property,如下是一个简单的例子:

Action.c

{

intHttpRetCode;

web_url(”my_home”,“URL=http://my_home”,“TargetFrame=_TOP”,LAST);

HttpRetCode=web_get_int_property(HTTP_INFO_RETURN_CODE);

if(HttpRetCode==200)

lr_log_message(”Thescript.successfullyaccessedtheMy_homehomepage”);

else

lr_log_message(”Thescript.failedtoaccesstheMy_homehomepage“);

}