TA的每日心情 | 奋斗 2016-9-21 09:53 |
---|
签到天数: 1 天 连续签到: 1 天 [LV.1]测试小兵
|
脚本内容(登录部分):
/* -------------------------------------------------------------------------------
Script Title :
Script Description :
Recorder Version : 8859
------------------------------------------------------------------------------- */
vuser_init()
{
web_reg_find("Text=Web Tours",
LAST);
web_url("welcome.pl",
"URL=http://localhost:1080/WebTours/welcome.pl?signOff=true",
"TargetFrame=",
"Resource=0",
"RecContentType=text/html",
"Referer=http://localhost:1080/WebTours/",
"Snapshot=t1.inf",
"Mode=HTML",
EXTRARES,
"Url=http://download.cdn.mozilla.net/pub/firefox/releases/47.0/update/win32/zh-CN/firefox-47.0.complete.mar", "Referer=", ENDITEM,
LAST);
lr_start_transaction("login");
web_reg_find("Text=Web Tours",
LAST);
lr_think_time(15);
web_submit_data("login.pl",
"Action=http://localhost:1080/WebTours/login.pl",
"Method=POST",
"TargetFrame=body",
"RecContentType=text/html",
"Referer=http://localhost:1080/WebTours/nav.pl?in=home",
"Snapshot=t2.inf",
"Mode=HTML",
ITEMDATA,
"Name=userSession", "Value=118841.995220737zVVcQDfpVcQVzzzHDzzHHpzVAHHf", ENDITEM,
"Name=username", "Value=jojo", ENDITEM,
"Name=password", "Value=bean", ENDITEM,
"Name=login.x", "Value=71", ENDITEM,
"Name=login.y", "Value=5", ENDITEM,
"Name=JSFormSubmit", "Value=off", ENDITEM,
LAST);
lr_end_transaction("login",LR_AUTO);
return 0;
}
结果错误如下:
vuser_init.c(29): Registering web_reg_find was successful [MsgId: MMSG-26390]
vuser_init.c(33): Notify: Transaction "login" started.
vuser_init.c(34): Error -26366: "Text=Web Tours" not found for web_reg_find [MsgId: MERR-26366]
vuser_init.c(34): web_submit_data("login.pl") highest severity level was "ERROR", 795 body bytes, 225 header bytes [MsgId: MMSG-26388]vuser_init.c(34): Notify: Transaction "login" ended with "Fail" status (Duration: 0.2435 Wasted Time: 0.0021).
Abort was called from an action.
小女刚开始自学这个,还望各位大侠多多指教哈! |
|