To which variables I can do Parameterization,Correlation?

Showing Answers 1 - 15 of 15 Answers

Guest

  • Jan 19th, 2007
 

hi,

For session id we can use Corelation, for Uid,pwd in the sense we go for Parameterization(here we r passing the data).in the sense of correlation not req the data.

kishore

9881158426

  Was this answer useful?  Yes

chittaranjan

  • Jan 25th, 2007
 

Parameterization: its done for the data which is send by the client [through the UI] It can be any data. Where we do the data validation Correlation: The data send by the Server, after receiving the request from the client UI. For handling this data we mainly do Correlation.

viswamvv

  • Aug 9th, 2008
 

Correlation: - For every client request the web server will generated some dynamic (hard coded) values . based on this server will give response. we
need to correlate these hard-coded values. For ex: if we record a script the server will generate and pass some HARDCODED values in to the script. If we try to replay the script with old HARDCODED values it is not possible to recognize by the server. For that we need to correlate that hard coded values by replacing the new values every time. for capturing new values we use web_reg_save_param() function.
It will capture the dynamic values and replace the hard coded values.


Parameterization:-
Then parameterization is used to done the user validations. that means we need to parameterise the values which are validate then user actions. For ex:- in case of login functionality for one user it is ok. but in the case of 100s of users it is not possible to pass the same user-id &password. for this type of values we need to parameterize.

  Was this answer useful?  Yes

cherri88

  • Aug 21st, 2008
 

You can Parameteterize the User name and pwd fileds in Login page. then based on yor web page fields you go with parametrrization. its based on Transaction you keep for the web page.

Correlation is done for the server responded vaules which are sits in you script to be correlated.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions