Consider a business process with login, business logic and logout. Login and logout need to be
iterated only once while business logic will be iterated many times. What is the correct way to
record in terms of actions in the script?

A.
record the entire business process in action
B.
record the entire business process in vuser_init
C.
record login logic in vuser_init, business logic in action, logout logic in vuser_end
D.
record the entire business process in vuser_end
Explanation:
I have the same idea. C
0
0