The difference and relationship between LoadRunner thinking time and transaction response time
Think Time Lr_think_time is the time to think when a transaction starts; For example, if you want to click on a login button, we have to click on this button to think first is the delay of human brain thinking,
There is a finger click the mouse this action time is generally 1-5 seconds, this is the thinking time, performance testing Simulation thinking time is the way to simulate the real human action to do stress testing.
In general, the thinking time in the script is quite reasonable, and at the end of one transaction the starting point of another transaction defines the think time between the two.
Lr_end_transaction ("Login", Lr_auto);
Lr_think_time (3);
Lr_start_transaction ("compute connection");
Under normal circumstances, the shorter the thinking time, the greater the pressure on the server.
The response time of a transaction is the time it takes to initiate a request from the client to the end of the response that the client receives from the server side.
Response time = Network response time + application response time
In general, the response time of the transaction should be filtered out when the test results are analyzed.
The difference and relationship between LoadRunner thinking time and transaction response time