ZS2002 0 Newbie Poster

Hi,

I have wrapped Web Test requests in transactions, example:

this.BeginTransaction("00_002_ClickSignInButton");
WebTestRequest request2 ...
WebTestRequest request3 ...
this.BeginTransaction("00_002_ClickSignInButton");

Normally, in Loadrunner, the transactions think times are coded at the end of the transaction.

Example:

lr_start_transaction(".....")
....
lr_end_transaction("...",LR_AUTO);
lr_think_time(10);

I need to know how the above can be done in Visual C#.

I noticed that once a script is recorded and the code is generated, each request contains a request#.thinktime(10).

I want this think time to be set after each transactions.

Is this possible?

This is my first attempt at using Microsoft Visual Studio Load Test.

All assistance is welcome.

Thanks.