Search code examples
asp.netmonkey-testing

How to perform a monkey test (step by step)?


What is monkey test and what do I have to do to have my web application (ASP.Net) tested by it. Was looking around, but did not find anything precise I could base on.

Thanks in advance!


Solution

  • Found something: enter link description here

    1. Download a file called: gremlins.min.js
    2. In you page, on script part:
    $(document).ready(function () {
      gremlins.createHorde().unleash(); 
    });
    

    DONE!