You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@jmeter.apache.org by Ori Marco <or...@praxell.com> on 2007/10/25 15:56:56 UTC

Problem with reseting variables

Hi

 

I have few loop controller with condition as
${__javaScript(${NUM}<=${ParamsNumber},dummy)}

NUM is used as a counter by ${__intSum(${INIT},1,INIT)} every iteration.

Before the second I have User Parameters with row: NUM         1
(resetting NUM variable)

In the second loop NUM remain as ParamsNumber+1 as UP was ignored 

(Update Once Per Iteration is checked )

I'm using Jmeter 2.2

 

 

Ori Marko 
Quality Assurance Engineer 
Praxell Inc.
http://www.praxell.com <http://www.praxell.com> 


Re: Problem with reseting variables

Posted by Dmitry Kudrenko <dm...@ardas.dp.ua>.
Greetings, Ori!

OM> I have few loop controller with condition as
OM> ${__javaScript(${NUM}<=${ParamsNumber},dummy)}
dummy is optional parameter and you can skip it.

OM> NUM is used as a counter by ${__intSum(${INIT},1,INIT)} every iteration.
You can use Counter Pre Processor for this needs.

OM> Before the second I have User Parameters with row: NUM         1
OM> (resetting NUM variable)
Try to put User Parameters as child to Test Action Sampler.

OM> In the second loop NUM remain as ParamsNumber+1 as UP was ignored 
-- 
Best regards,
Dmitry Kudrenko
ARDAS group (http://ardas.dp.ua)



---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-user-help@jakarta.apache.org


Re[2]: Problem with reseting variables

Posted by Dmitry Kudrenko <dm...@ardas.dp.ua>.
>> I have few loop controller with condition as
>> ${__javaScript(${NUM}<=${ParamsNumber},dummy)}
s> Loop controllers don't have conditions - do you mean the While Controller?
Maybe, but it is better to use Loop Controller  for this needs without
any javaScript.

s> Try JMeter 2.3; the While Controller has been updated.

-- 
Dmitry Kudrenko
ARDAS group http://ardas.dp.ua
mailto:dmitry@ardas.dp.ua


---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-user-help@jakarta.apache.org


Re[2]: Problem with reseting variables

Posted by Dmitry Kudrenko <dm...@ardas.dp.ua>.
I had the similar problem when used User Parameters outside Sampler.
When I put it to the Test Action Sampler(or HTTP Request, for example)
as a child it works. Try to do it.

But if you will send detail plan description it will be ok.

OM> In another User Parameters

>> 1. While Controller
>> 2. is used as a counter by ${__intSum(${INIT},1,INIT)} every iteration
>> inside the loop at the beginning.

OM> But in which test element is the function?


-- 
Best regards,
Dmitry Kudrenko
ARDAS group http://ardas.dp.ua



---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-user-help@jakarta.apache.org


RE: Problem with reseting variables

Posted by Ori Marco <or...@praxell.com>.
Hi

I manage using PP UP: CounterName =
${__javaScript(parseInt('${CounterName}')+1)}
But if CounterName is defined in previous PP UP the increment happens
only once

FYI 

Ori Marko 
Quality Assurance Engineer 
Praxell Inc.
Mobile: 0524-455-177
Office:03-6126060 Ext 612
Fax: 03-6126066
http://www.praxell.com

-----Original Message-----
From: Ori Marco [mailto:orim@praxell.com] 
Sent: Tuesday, December 25, 2007 10:20 AM
To: JMeter Users List
Subject: RE: Problem with reseting variables

Hi

Can you give generic solution for using counter in a loop?
e.g. calculating factorial
ThreadGroup
Sum=1
+Loop
++Sum = Sum*LoopCounter	
+Submit request with Sum

Thanks


Ori Marko 
Quality Assurance Engineer 
Praxell Inc.
http://www.praxell.com

-----Original Message-----
From: sebb [mailto:sebbaz@gmail.com] 
Sent: Thursday, October 25, 2007 5:33 PM
To: JMeter Users List
Subject: Re: Problem with reseting variables

It's difficult to say what the problem is without knowing the actual
arrangement of the relevant items in the test plan.

Please describe the plan, e.g.'

ThreadGroup
+ UP NUM=1
+ WC cond

etc

[Don't send the JMX file - it makes reading postings difficult, wastes
space and tends to get mangled.]

If you can provide a sample failing JMX file, then I suggest you
create a Bugzilla issue and attach it to that. Or post it on a public
web-server and send the link.

On 25/10/2007, Ori Marco <or...@praxell.com> wrote:
> In another User Parameters
>
> Ori Marko
> Quality Assurance Engineer
> Praxell Inc.
> Mobile: 0524-455-177
> Office:03-6126060 Ext 612
> Fax: 03-6126066
> http://www.praxell.com
>
> -----Original Message-----
> From: sebb [mailto:sebbaz@gmail.com]
> Sent: Thursday, October 25, 2007 5:23 PM
> To: JMeter Users List
> Subject: Re: Problem with reseting variables
>
> On 25/10/2007, Ori Marco <or...@praxell.com> wrote:
> > 1. While Controller
> > 2. is used as a counter by ${__intSum(${INIT},1,INIT)} every
iteration
> > inside the loop at the beginning.
>
> But in which test element is the function?
>
> > 3. I don't find in History of Changes that while controller has
> changed
>
> Sorry - it did change, but that was before 2.2.
>
> 2.3 is still recommended over 2.2.
>
> > Ori Marko
> > Quality Assurance Engineer
> > Praxell Inc.
> > http://www.praxell.com
> >
> > -----Original Message-----
> > From: sebb [mailto:sebbaz@gmail.com]
> > Sent: Thursday, October 25, 2007 4:37 PM
> > To: JMeter Users List
> > Subject: Re: Problem with reseting variables
> >
> > In 25/10/2007, Ori Marco <or...@praxell.com> wrote:
> > > Hi
> > >
> > >
> > >
> > > I have few loop controller with condition as
> > > ${__javaScript(${NUM}<=${ParamsNumber},dummy)}
> >
> > Loop controllers don't have conditions - do you mean the While
> > Controller?
> >
> > > NUM is used as a counter by ${__intSum(${INIT},1,INIT)} every
> > iteration.
> >
> > Where is this done?
> >
> > > Before the second I have User Parameters with row: NUM         1
> > > (resetting NUM variable)
> > >
> > > In the second loop NUM remain as ParamsNumber+1 as UP was ignored
> > >
> > > (Update Once Per Iteration is checked )
> > >
> > > I'm using Jmeter 2.2
> >
> > Try JMeter 2.3; the While Controller has been updated.
> >
> > >
> > >
> > >
> > >
> > > Ori Marko
> > > Quality Assurance Engineer
> > > Praxell Inc.
> > > http://www.praxell.com <http://www.praxell.com>
> > >
> > >
> >
> >
---------------------------------------------------------------------
> > To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> >
> >
> >
---------------------------------------------------------------------
> > To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-user-help@jakarta.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-user-help@jakarta.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-user-help@jakarta.apache.org


RE: Problem with reseting variables

Posted by Ori Marco <or...@praxell.com>.
Hi

Can you give generic solution for using counter in a loop?
e.g. calculating factorial
ThreadGroup
Sum=1
+Loop
++Sum = Sum*LoopCounter	
+Submit request with Sum

Thanks


Ori Marko 
Quality Assurance Engineer 
Praxell Inc.
http://www.praxell.com

-----Original Message-----
From: sebb [mailto:sebbaz@gmail.com] 
Sent: Thursday, October 25, 2007 5:33 PM
To: JMeter Users List
Subject: Re: Problem with reseting variables

It's difficult to say what the problem is without knowing the actual
arrangement of the relevant items in the test plan.

Please describe the plan, e.g.'

ThreadGroup
+ UP NUM=1
+ WC cond

etc

[Don't send the JMX file - it makes reading postings difficult, wastes
space and tends to get mangled.]

If you can provide a sample failing JMX file, then I suggest you
create a Bugzilla issue and attach it to that. Or post it on a public
web-server and send the link.

On 25/10/2007, Ori Marco <or...@praxell.com> wrote:
> In another User Parameters
>
> Ori Marko
> Quality Assurance Engineer
> Praxell Inc.
> Mobile: 0524-455-177
> Office:03-6126060 Ext 612
> Fax: 03-6126066
> http://www.praxell.com
>
> -----Original Message-----
> From: sebb [mailto:sebbaz@gmail.com]
> Sent: Thursday, October 25, 2007 5:23 PM
> To: JMeter Users List
> Subject: Re: Problem with reseting variables
>
> On 25/10/2007, Ori Marco <or...@praxell.com> wrote:
> > 1. While Controller
> > 2. is used as a counter by ${__intSum(${INIT},1,INIT)} every
iteration
> > inside the loop at the beginning.
>
> But in which test element is the function?
>
> > 3. I don't find in History of Changes that while controller has
> changed
>
> Sorry - it did change, but that was before 2.2.
>
> 2.3 is still recommended over 2.2.
>
> > Ori Marko
> > Quality Assurance Engineer
> > Praxell Inc.
> > http://www.praxell.com
> >
> > -----Original Message-----
> > From: sebb [mailto:sebbaz@gmail.com]
> > Sent: Thursday, October 25, 2007 4:37 PM
> > To: JMeter Users List
> > Subject: Re: Problem with reseting variables
> >
> > In 25/10/2007, Ori Marco <or...@praxell.com> wrote:
> > > Hi
> > >
> > >
> > >
> > > I have few loop controller with condition as
> > > ${__javaScript(${NUM}<=${ParamsNumber},dummy)}
> >
> > Loop controllers don't have conditions - do you mean the While
> > Controller?
> >
> > > NUM is used as a counter by ${__intSum(${INIT},1,INIT)} every
> > iteration.
> >
> > Where is this done?
> >
> > > Before the second I have User Parameters with row: NUM         1
> > > (resetting NUM variable)
> > >
> > > In the second loop NUM remain as ParamsNumber+1 as UP was ignored
> > >
> > > (Update Once Per Iteration is checked )
> > >
> > > I'm using Jmeter 2.2
> >
> > Try JMeter 2.3; the While Controller has been updated.
> >
> > >
> > >
> > >
> > >
> > > Ori Marko
> > > Quality Assurance Engineer
> > > Praxell Inc.
> > > http://www.praxell.com <http://www.praxell.com>
> > >
> > >
> >
> >
---------------------------------------------------------------------
> > To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> >
> >
> >
---------------------------------------------------------------------
> > To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-user-help@jakarta.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-user-help@jakarta.apache.org


Re: Problem with reseting variables

Posted by sebb <se...@gmail.com>.
It's difficult to say what the problem is without knowing the actual
arrangement of the relevant items in the test plan.

Please describe the plan, e.g.'

ThreadGroup
+ UP NUM=1
+ WC cond

etc

[Don't send the JMX file - it makes reading postings difficult, wastes
space and tends to get mangled.]

If you can provide a sample failing JMX file, then I suggest you
create a Bugzilla issue and attach it to that. Or post it on a public
web-server and send the link.

On 25/10/2007, Ori Marco <or...@praxell.com> wrote:
> In another User Parameters
>
> Ori Marko
> Quality Assurance Engineer
> Praxell Inc.
> Mobile: 0524-455-177
> Office:03-6126060 Ext 612
> Fax: 03-6126066
> http://www.praxell.com
>
> -----Original Message-----
> From: sebb [mailto:sebbaz@gmail.com]
> Sent: Thursday, October 25, 2007 5:23 PM
> To: JMeter Users List
> Subject: Re: Problem with reseting variables
>
> On 25/10/2007, Ori Marco <or...@praxell.com> wrote:
> > 1. While Controller
> > 2. is used as a counter by ${__intSum(${INIT},1,INIT)} every iteration
> > inside the loop at the beginning.
>
> But in which test element is the function?
>
> > 3. I don't find in History of Changes that while controller has
> changed
>
> Sorry - it did change, but that was before 2.2.
>
> 2.3 is still recommended over 2.2.
>
> > Ori Marko
> > Quality Assurance Engineer
> > Praxell Inc.
> > http://www.praxell.com
> >
> > -----Original Message-----
> > From: sebb [mailto:sebbaz@gmail.com]
> > Sent: Thursday, October 25, 2007 4:37 PM
> > To: JMeter Users List
> > Subject: Re: Problem with reseting variables
> >
> > In 25/10/2007, Ori Marco <or...@praxell.com> wrote:
> > > Hi
> > >
> > >
> > >
> > > I have few loop controller with condition as
> > > ${__javaScript(${NUM}<=${ParamsNumber},dummy)}
> >
> > Loop controllers don't have conditions - do you mean the While
> > Controller?
> >
> > > NUM is used as a counter by ${__intSum(${INIT},1,INIT)} every
> > iteration.
> >
> > Where is this done?
> >
> > > Before the second I have User Parameters with row: NUM         1
> > > (resetting NUM variable)
> > >
> > > In the second loop NUM remain as ParamsNumber+1 as UP was ignored
> > >
> > > (Update Once Per Iteration is checked )
> > >
> > > I'm using Jmeter 2.2
> >
> > Try JMeter 2.3; the While Controller has been updated.
> >
> > >
> > >
> > >
> > >
> > > Ori Marko
> > > Quality Assurance Engineer
> > > Praxell Inc.
> > > http://www.praxell.com <http://www.praxell.com>
> > >
> > >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-user-help@jakarta.apache.org


RE: Problem with reseting variables

Posted by Ori Marco <or...@praxell.com>.
In another User Parameters

Ori Marko 
Quality Assurance Engineer 
Praxell Inc.
Mobile: 0524-455-177
Office:03-6126060 Ext 612
Fax: 03-6126066
http://www.praxell.com

-----Original Message-----
From: sebb [mailto:sebbaz@gmail.com] 
Sent: Thursday, October 25, 2007 5:23 PM
To: JMeter Users List
Subject: Re: Problem with reseting variables

On 25/10/2007, Ori Marco <or...@praxell.com> wrote:
> 1. While Controller
> 2. is used as a counter by ${__intSum(${INIT},1,INIT)} every iteration
> inside the loop at the beginning.

But in which test element is the function?

> 3. I don't find in History of Changes that while controller has
changed

Sorry - it did change, but that was before 2.2.

2.3 is still recommended over 2.2.

> Ori Marko
> Quality Assurance Engineer
> Praxell Inc.
> http://www.praxell.com
>
> -----Original Message-----
> From: sebb [mailto:sebbaz@gmail.com]
> Sent: Thursday, October 25, 2007 4:37 PM
> To: JMeter Users List
> Subject: Re: Problem with reseting variables
>
> In 25/10/2007, Ori Marco <or...@praxell.com> wrote:
> > Hi
> >
> >
> >
> > I have few loop controller with condition as
> > ${__javaScript(${NUM}<=${ParamsNumber},dummy)}
>
> Loop controllers don't have conditions - do you mean the While
> Controller?
>
> > NUM is used as a counter by ${__intSum(${INIT},1,INIT)} every
> iteration.
>
> Where is this done?
>
> > Before the second I have User Parameters with row: NUM         1
> > (resetting NUM variable)
> >
> > In the second loop NUM remain as ParamsNumber+1 as UP was ignored
> >
> > (Update Once Per Iteration is checked )
> >
> > I'm using Jmeter 2.2
>
> Try JMeter 2.3; the While Controller has been updated.
>
> >
> >
> >
> >
> > Ori Marko
> > Quality Assurance Engineer
> > Praxell Inc.
> > http://www.praxell.com <http://www.praxell.com>
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-user-help@jakarta.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-user-help@jakarta.apache.org


Re: Problem with reseting variables

Posted by sebb <se...@gmail.com>.
On 25/10/2007, Ori Marco <or...@praxell.com> wrote:
> 1. While Controller
> 2. is used as a counter by ${__intSum(${INIT},1,INIT)} every iteration
> inside the loop at the beginning.

But in which test element is the function?

> 3. I don't find in History of Changes that while controller has changed

Sorry - it did change, but that was before 2.2.

2.3 is still recommended over 2.2.

> Ori Marko
> Quality Assurance Engineer
> Praxell Inc.
> http://www.praxell.com
>
> -----Original Message-----
> From: sebb [mailto:sebbaz@gmail.com]
> Sent: Thursday, October 25, 2007 4:37 PM
> To: JMeter Users List
> Subject: Re: Problem with reseting variables
>
> In 25/10/2007, Ori Marco <or...@praxell.com> wrote:
> > Hi
> >
> >
> >
> > I have few loop controller with condition as
> > ${__javaScript(${NUM}<=${ParamsNumber},dummy)}
>
> Loop controllers don't have conditions - do you mean the While
> Controller?
>
> > NUM is used as a counter by ${__intSum(${INIT},1,INIT)} every
> iteration.
>
> Where is this done?
>
> > Before the second I have User Parameters with row: NUM         1
> > (resetting NUM variable)
> >
> > In the second loop NUM remain as ParamsNumber+1 as UP was ignored
> >
> > (Update Once Per Iteration is checked )
> >
> > I'm using Jmeter 2.2
>
> Try JMeter 2.3; the While Controller has been updated.
>
> >
> >
> >
> >
> > Ori Marko
> > Quality Assurance Engineer
> > Praxell Inc.
> > http://www.praxell.com <http://www.praxell.com>
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-user-help@jakarta.apache.org


RE: Problem with reseting variables

Posted by Ori Marco <or...@praxell.com>.
1. While Controller
2. is used as a counter by ${__intSum(${INIT},1,INIT)} every iteration
inside the loop at the beginning.
3. I don't find in History of Changes that while controller has changed

Ori Marko 
Quality Assurance Engineer 
Praxell Inc.
http://www.praxell.com

-----Original Message-----
From: sebb [mailto:sebbaz@gmail.com] 
Sent: Thursday, October 25, 2007 4:37 PM
To: JMeter Users List
Subject: Re: Problem with reseting variables

In 25/10/2007, Ori Marco <or...@praxell.com> wrote:
> Hi
>
>
>
> I have few loop controller with condition as
> ${__javaScript(${NUM}<=${ParamsNumber},dummy)}

Loop controllers don't have conditions - do you mean the While
Controller?

> NUM is used as a counter by ${__intSum(${INIT},1,INIT)} every
iteration.

Where is this done?

> Before the second I have User Parameters with row: NUM         1
> (resetting NUM variable)
>
> In the second loop NUM remain as ParamsNumber+1 as UP was ignored
>
> (Update Once Per Iteration is checked )
>
> I'm using Jmeter 2.2

Try JMeter 2.3; the While Controller has been updated.

>
>
>
>
> Ori Marko
> Quality Assurance Engineer
> Praxell Inc.
> http://www.praxell.com <http://www.praxell.com>
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-user-help@jakarta.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-user-help@jakarta.apache.org


Re: Problem with reseting variables

Posted by sebb <se...@gmail.com>.
In 25/10/2007, Ori Marco <or...@praxell.com> wrote:
> Hi
>
>
>
> I have few loop controller with condition as
> ${__javaScript(${NUM}<=${ParamsNumber},dummy)}

Loop controllers don't have conditions - do you mean the While Controller?

> NUM is used as a counter by ${__intSum(${INIT},1,INIT)} every iteration.

Where is this done?

> Before the second I have User Parameters with row: NUM         1
> (resetting NUM variable)
>
> In the second loop NUM remain as ParamsNumber+1 as UP was ignored
>
> (Update Once Per Iteration is checked )
>
> I'm using Jmeter 2.2

Try JMeter 2.3; the While Controller has been updated.

>
>
>
>
> Ori Marko
> Quality Assurance Engineer
> Praxell Inc.
> http://www.praxell.com <http://www.praxell.com>
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-user-help@jakarta.apache.org