- I am performing login test with multiple concurrent users.
- I have created a JDBC request to get username and password from patient table. and then Created a Test.CSV file using same data with the help of BeanShell assertion.
- Now pass this file name in CSV dataset configTest.csv.
- I am able to login with multiple users concurrently but facing an issue: when I am running the test first time. The file is not available at the same location because it is being created after the execution of thread group. If file is not there I am getting this in log: File Test.csv must exist and be readable.
To execute the same process, What I am doing is, keeping the JDBC request is different test plan. Firstly executing that test plan and then proceeding to the login.
I want to execute and keep both requests is the same test plan. one more thing If I am using the different thread group for these requests in the same test plan, Still facing the same issue.