How to disable cached requests in Visual Studio test load

When running a load test, I want to disable cached requests.

In my web test, the Cache Control setting is disabled, which is not supposed to cache. However, it looks like it caches images, etc .; which I do not want.

How can i do this? Thanks

+3
source share
1 answer

This is set by the "Percentage of new users" parameter in the script properties. To ensure that there is no caching, set the property to 100. This means that 100% of simulated users will appear on the site for the first time.

+3
source

Source: https://habr.com/ru/post/1703188/


All Articles