我準備測試Siebel 8應用程序,所有手動關聯後,我的腳本無錯地重播,但運行時查看器返回錯誤(粘貼在下方)。Siebel 8應用程序的性能測試 - alarmDate error
@0`0`4`2``0`UC`1`Status`Error`SWEC`9`SRN`wChADN5C8eJO2zBtlyWnw8pX7FijYTURlwhBKjeYzZob`0`1`
Errors`0`2`0`Level0`0`ErrMsg`Required in argument 'alarmDate' not supplied for
'GetAlarms' method in Business Service 'Alarm Manager'(SBL-DAT-00125)
`ErrCode`7667837`0`6`Command Manager`0`3`0`StateToolBar`0`#10`true`#12`true`#24`true`0`0
`StateExToolBar`0`0`0`FlagsToolBar`0`3`0`State`0`#13`false`#11`true`#14`
false`0`3`StateEx`0`1`0`#11`0`Checked`false`0`0`#13`0`0`0`#14`0`0`0`Flags`0`
我認爲這是與日期格式的東西,我曾嘗試在代碼(http://en.wikipedia.org/wiki/User:Saalu_jr/sandbox)變化的東西,但錯誤仍時有發生。
我正在使用Loadrunner 11.52(Siebel Web協議),IE8。 LoadRunner的代碼:
web_submit_data("start.swe_14",
"Action=http://{URL}/start.swe",
"Method=POST",
"TargetFrame=",
"RecContentType=text/html",
"Referer=",
"Snapshot=t135.inf",
"Mode=HTML",
"EncodeAtSign=YES",
ITEMDATA,
"Name=SWEC", "Value={Siebel_SWECount}", ENDITEM,
"Name=SWEMethod", "Value=GetAlarms", ENDITEM,
"Name=SWERPC", "Value=1", ENDITEM,
"Name=SWEActiveApplet", "Value=Service Request List Applet - Home Page VAS TST", ENDITEM,
"Name=SWECmd", "Value=InvokeMethod", ENDITEM,
"Name=SRN", "Value={CorrelationParameter}", ENDITEM,
"Name=SWEIPS", "[email protected]*0*5*0*0*3*0*8*interval4*150013*packUIStrings4*true9*alarmDate9*2/25/20145*SWEJI5*false3*now7*7:45:26", ENDITEM,
"Name=SWEActiveView", "Value=Home Service Request List View - VAS ARGUS", ENDITEM,
"Name=SWEService", "Value=Alarm Manager", ENDITEM,
LAST);
Siebel中的規範日期格式是mm/dd/yyyy。嘗試添加領先的'0'到您提供的'2/25/2014'日期。 –
我加了0,沒有任何改變。 – RoadRunner