I have an existing api testing framework which uses requests module of python3. I decided to use locust module to load test my apis using the same framework. From what I understand locust uses its own client to make api calls.
Is there a way where I can use pythons requests module with locust? So that I don't have to write same code again for locust ( using its own client )
Please see that using requests module with locust does make the api calls but does not capture the response times ( main thing when doing a load testing ) in both gui and non gui mode.