loadrunner If i found 10 dynamic value to correlate, where i will do all 10...

  • perf-test.com need your contributions to build up a strong repository of performance engineering resources.

A

Abu Jafor Ansary

Guest
If i found 10 dynamic value to correlate, where i will do all 10 correlation? 1) All correlation Just beginning in the action file. 2) Wherever i found the dynamic value there itself?
 
It depends on were is located the function that returns the response which contains the dynamic value (vugen tutorial). You need to check the code generation and look for the response ID, when you have that ID, see the "add event" (function if the script) which has the same ID and before that you should add it (each value is different). Example *value= 123 and in the script is located on web_url("myscript") *that "123" is found on response body with ID 43 *look for add event with ID 43 and it is web_url("google.com") *correlation function should be added before google.com *on function "myscript" replace the 123 by correlation name (using curly brackets/symbol by default). Hope this helped you.
 
@ Yusmary Espinoza Cardoza That means in the vugen script where i will find the dynamic value, Just before that i will use the web_reg_save_param function & substitute the dynamic value. Right?
 
Following the example, google.com is t1.inf and myscript is t2.inf...first you need to identify which function has the reponse with the value (it could not be the same where you have the dynamic value) and then you have the function with the value: Web_reg_save_param Web_url(google) Web_url(myscript) Regards,