Hi,
Please see the below steps for parameterization..
For passing values like user name and password use user parameter file.
This is the solution for u r problem:
1. go to options->function Helper Dialog
2. Choose a function----CSV Read
3. Then create one csv file(Ex: login.csv) in JMETER bin folder.That file
contains first coloum as username and second coloum password.
4. In function parameters,function name is csv file name and coloum number
is 0;
5. Then click on Generate button.then it will genrate one
function(${__CSVRead(login.csv,0)}) copy this function.
6. Then add userparamer(Add->preprocessor->userparameter) to the thread
group.
7. click on add variable.In parameters list enter name filed(Ex:Username)
and corresponding User_1 paste the function(${__CSVRead(login.csv,0)})
8. and add one more variable name as password and function name as
(${__CSVRead(login.csv,1)}.
9.And add onemore variable name as next and function as ${__CSVRead(
login.csv,next)}
10. then use these anmes into the script.
Go to u r script and instead of username(ex: john) place ${Username} and
instead of password(ex:@lt456) place ${password}
For every iteration it will take the value from the file and place those
values in to the corresponding user name and password.Try this one i think
this will solve u r problem.
-------Mahesh
On 9/3/07, mister raja <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I want some help abput parameterizing in Jmeter, i want add a list of
> usernames and passwords for a login page.
>
> Raja
>