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

222 Views Asked by At

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!

1

There are 1 best solutions below

0
On BEST ANSWER

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!