Azure Load Testing
An Azure service that enables developers and testers to generate insights on how to improve the performance, scalability, and capacity usage of their application
78 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
A load testing scenario is being set up for a secure endpoint using Azure Load Testing within an application stack that includes:
Steps Taken So Far:
GET
https://domain.com/my-page-with-secure-endpoint
Authorization: Bearer my-token
(copied manually from browser DevTools)
appSession.0
, appSession.1
).
Cookie: appSession.0=token; appSession.1=token
.jmx
files, but only an option to upload a .csv
file was available.
[email protected],MySecurePassword
- Specified `username,password` as the **variable names** in Azure Load Testing.
- Encountered the following error when running the test with the login URL:
- ❌ **"File login-jmeter.csv must exist and be readable"**
- Using a **single user to send 100 requests** for the test.
Questions:
Authorization
token alone sufficient?
.jmx
files cannot be uploaded, what alternative is available to pass authentication dynamically?The primary goal is to obtain load testing data for the secure endpoint, and there's a willingness to add statically generated tokens or cookies. Any guidance on properly managing Auth0 authentication in Azure Load Testing would be greatly appreciated! 🚀