web_reg_save_param_ex( "ParamName=upfilename", "LB=<span class=\"left\">申请日期:", "RB=</span>", SEARCH_FILTERS, LAST); if(!lr_param_exists("upfilename")) { lr_error_message("upfilename parameter not found"); lr_exit(LR_EXIT_ITERATION_AND_CONTINUE, LR_AUTO); } lr_debug_message("upfilename parameter value: %s", lr_eval_string("{upfilename}"));报错
时间: 2023-12-21 15:07:23 浏览: 105
Loadrunner中web_reg_save_param的使用详解
5星 · 资源好评率100%
根据你提供的信息,可能是因为 lr_debug_message 函数中的格式字符串不正确导致的错误。
在格式字符串中,%s 表示输出一个字符串,但你在 lr_debug_message 函数中传入的参数却不是字符串类型,所以引发了该错误。
请确保在调用 lr_debug_message 函数时,传入的参数类型与格式字符串中指定的类型一致。如果要输出整数类型的参数,可以使用 %d 表示,例如:
```
int num = 100;
lr_debug_message("num value: %d", num);
```
这样就可以输出整数类型的参数值了。
阅读全文