• SPEForums need your contributions to build up a strong repository of performance engineering resources.

I am trying to record a application i have...

R

Ramakrishna Gade

Guest
I am trying to record a application i have some drop down values but that drop down values is keep on changing how we are going handle in better way Thanks
 
Ordinal all would capture all in an array and then read any random position from that array and pass that to the variable...
 
Correlation: A foundation level tool mechanical skill
 
you can correlate by using correlation function
 
i have same doubt but i know we need to do correlation here but need clear explanation
 
After doing correlation you need to to randamization function to pick one random value in drop down in list of values
 
web_reg_save_param("district","LB=","ORD=ALL",LAST); char *temp; temp=lr_paramarr_random("district"); -- district(drop downlist) is correlated parameter name lr_save_string(temp,"rdist"); -- rdist is the substituted value to place If you wan to randomize it then you can use rand() function for that.
 
Above example is well suite for all random values between 1st to last value in a drop down list
 
If u need specific index range example like if a drop down having 100 values i need to pick randomly one value between 25th value to 85th value then approach will different
 
Back
Top