ShravanM
ShravanM

Reputation: 323

LoadRunner parameter having sub iteration

My task is to login with a user and enter 10 orders and then logout.

Currently, I'm doing a user login > enter single order > logout. This way in the controller I'm using 10 users with 5 iteration so that's about 50 transactions.

Now, instead of entering a single order I need to enter 10 orders per user login.

Can you please suggest the best way to achieve this goal?

Upvotes: 0

Views: 343

Answers (1)

James Pulley
James Pulley

Reputation: 5692

for (ordercounter=1;ordercounter<=10;ordercounter++)
{   // my order code here which begins and ends at the same point }

Programming - Foundation skill set for any performance testing tool

Upvotes: 1

Related Questions