WebFuzzing / EvoMaster

The first open-source AI-driven tool for automatically generating system-level test cases (also known as fuzzing) for web/enterprise applications. Currently targeting whitebox and blackbox testing of Web APIs, like REST, GraphQL and RPC (e.g., gRPC and Thrift).
GNU Lesser General Public License v3.0
500 stars 83 forks source link

Setting budget on number of requests #948

Closed devikasondhi closed 6 months ago

devikasondhi commented 6 months ago

Hi, Is there any configuration to limit on the number of requests instead of setting maxtime while running the blackbox version of EvoMaster?

Thanks

arcuri82 commented 6 months ago

Hi,

yes, you can use --maxActionEvaluations x (replace x with the number of your choice) combined with --stoppingCriterion FITNESS_EVALUATIONS

devikasondhi commented 6 months ago

Thanks!