我正在使用web param函數來檢索某些值。我想從數組項中獲取特定索引的值,並將其存儲在要用於web_link調用的參數中。如何從web_reg_save_param檢索特定索引值arrray
char * tempVal;
web_reg_save_param("dynArray","LB=/EmployeeProfile/","RB=\">","ORD=ALL",LAST);
tempVal = "{dynArray_2}";
沒有爲上述聲明沒有錯誤,但訪問tempVal當它給錯誤
vuser_init.c(143): web_link("emp") started [MsgId: MMSG-26355]
vuser_init.c(143): Warning: The string 'tempVal' with parameter delimiters is not a parameter.
vuser_init.c(143): Error -27995: Requested link ("Text={tempVal}") not found [MsgId: MERR-27995]
這個例子是總數,我期待訪問特定的索引和存儲的參數。而且隨機指數選項不是我的要求。 – Akbar
您似乎誤用了LoadRunner參數化。 'tempVal'局部變量不會自動轉換爲參數。調用'lr_save_string(tempVal,「tempVal」)'來做到這一點。那麼你將能夠使用它。 – tserg42