I am testing a website for load test having following pages
- Home Page
- Login Page
- Blog Page
- Selected Blog Page
- Post on Selected Blog
I want to send request for each page at same time with different number of users. At now i am doing this in following way Thread 1 (user 500)
- Home Page
Thread 2 (300 user)
- Blog Page
Thread 3 (100 user)
- Selected Blog Page
But when i use login functionality, then how can i achieve this task because login requests sets some cookies data and other information about user and Post page also need some data from Selected Blog Page. I want to achieve following: Lets suppose 500 user logged-in then 300 user should hit Blog Page, 100 user hit Selected Blog Page and 100 User hit the Post on the Blog Page , but all things should be at same time.

