Muestra las diferencias entre dos versiones de la página.
| Ambos lados, revisión anterior Revisión previa Próxima revisión | Revisión previa | ||
|
fw:locust [2014/08/08 09:37] alfred [Basic things in Locust] |
fw:locust [2020/05/09 09:25] (actual) |
||
|---|---|---|---|
| Línea 2: | Línea 2: | ||
| Is a load testing tool in which you define user behaviour and the system launches a lot of non-real users accessing your web page. | Is a load testing tool in which you define user behaviour and the system launches a lot of non-real users accessing your web page. | ||
| + | * Docs: [[http://docs.locust.io/en/latest/]] | ||
| ===== Basic things ===== | ===== Basic things ===== | ||
| ==== Install ==== | ==== Install ==== | ||
| Línea 118: | Línea 119: | ||
| ==== The TaskSet class ==== | ==== The TaskSet class ==== | ||
| === Declaring tasks with the task decorator === | === Declaring tasks with the task decorator === | ||
| - | <code> | + | <code python> |
| from locust import Locust, TaskSet, task | from locust import Locust, TaskSet, task | ||
| Línea 130: | Línea 131: | ||
| </code> | </code> | ||
| Or defining weight (task2 will be executed twice than task): | Or defining weight (task2 will be executed twice than task): | ||
| - | <code> | + | <code python> |
| from locust import Locust, TaskSet, task | from locust import Locust, TaskSet, task | ||