- You have “import random” or “from random” in your test, meaning you are including a random element.
- You don’t have a name variable attached to your GET and POST requests, meaning you could get millions of single logs
Tests
Random and Named Routes
You have tried to save a test that uses random numbers or strings, but does not name all of its test requests.
This is quick and easy to solve, so do not worry. The reason for the error you received is the following:
There is no problem with this, you want to test your User API with a random user ID between 0 and 100,000.
However, these will then report as 100,000 different URLs you tested. That’s not what you want,
but also, will cause the test to be too large for our storage allowances.
By changing it to the following you will get them reported as a single clean result, and have no problems:
If you are not actually using any random numbers or strings you can remove the “import random” from the top of your test script.
Contact us at hello@loadforge.com if you believe the matching is incorrect or for any questions :)