firefoxtestinggoogle-chromebrowser-pluginmonkey-testing

How to " Monkey Test" a website


I'm looking for a way to Monkey test a website. Something like a browser plugin in which you could define a time interval and non-clicking zones, and then the plugin would start clicking (and possibly other actions) everywhere (except the non-clicking zones or DOM elements) during the specified time interval.

I've searched online and only found this type of tests for iPhone and Android.


Solution

  • Selenium allows you to search the DOM elements in a page, and simulate clicks or keyboard events directed to a certain DOM element. That's not quite the same as defining "non-clicking zones" (which would presumably be defined in terms of X/Y coordinates), but it might possibly be even easier this way.