分类: 项目管理
2008-11-26 11:24:09
LR报错:
显示为以下信息:
Action.c (18): undeclared identifier `LAST'
d:\\lr\\gle\\\\combined_google.c (5): 1 errors, not writing pre_cci.ci
在LR8.1里录制时少了globals.h文件时的报错信息。
解决方法:在别的VuGen脚本里(含有globals.h)把globals.h文件复制下来,粘贴到缺少该文件里的脚本时,即可成功回放。
在网上查看globals.h文件应该是VuGen根据选择脚本选择协议的不同来添加不同的引用到“.h”头文件。
C的.h头文件
对于Web(HTTP/HTML)协议,
创建globals.h,包含内容
#ifndef _GLOBALS_H
#define _GLOBALS_H
//--------------------------
// Include Files
#include "lrun.h"
#include "web_api.h"
#include "lrw_custom_body.h"
// recorded for web_custom_request functions.
//--------------------------
// Global Variables
#endif // _GLOBALS_H