Questions tagged [monkey-testing]

Monkey testing is a software testing technique in which the testing is performed on the system under test randomly. The Input data that is used to test also generated randomly and keyed into the system.

24 questions
21
votes
3 answers

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…
fbernardo
  • 10,016
  • 3
  • 33
  • 46
16
votes
1 answer

Difference between "fuzz testing" and "monkey test"

I have recently been thinking of the difference between fuzz testing and monkey test. According to wiki, it seems monkey test is "only" a unit test and fuzz test isn't. Android has UI/Application Exerciser monkey and it doesn't seems like unit…
Matt
  • 8,195
  • 31
  • 115
  • 225
7
votes
1 answer

How to prevent Monkey test from opening notification panel and turning OFF wifi?

I am performing Monkey testing on my Android app. While performing events, Monkey pulls down the notification panel and clicks on wifi/mobile data icons, hence turning them OFF. I am using this command: adb shell monkey -p package_name --throttle…
Harminder Singh
  • 1,577
  • 1
  • 11
  • 19
7
votes
4 answers

Android monkey test choose a specific activity

I'm using the Android monkey test to test my android apps, it's works for my app, and is very cool. but I'd like to test an application activity in specific, how could i do that? today I'm testing all app with: $ adb shell monkey -p my.package -c…
ademar111190
  • 14,215
  • 14
  • 85
  • 114
7
votes
4 answers

Monkey testing for iPhone?

Is there a tool for monkey testing for iPhone? Like in the simulator.
Shades
  • 543
  • 2
  • 5
  • 11
6
votes
4 answers

monkey testing software for windows apps

I would like to stress test a win32 application by sending a lot of random keystrokes to it, and I wonder if anyone could point me to some software I could use. Ideally, I should be able to specify which keystrokes can be sent, and control rate…
Drealmer
  • 5,578
  • 3
  • 30
  • 37
3
votes
1 answer

Smoke Testing and Monkey Testing in ABAP

How can i do smoke and monkey testing in ABAP? Are there tools for that ?
cethint
  • 2,231
  • 8
  • 28
  • 31
2
votes
0 answers

monkey testing for react native app for both android and ios

The UI/Application Exerciser Monkey is a command-line tool that sends pseudo-random streams of keystrokes, touches, and gestures to a device. We run it with the Android Debug Bridge (adb) tool and is used to stress-test application and report back…
2
votes
2 answers

Chaos monkey scenarios that can be tested for Spring Boot application

I am using chaos monkey implementation of code centric to test a spring boot application which is hosted in a non scaled environment (i.e It is not hosted on cloud). Below are the scenarios that I am testing. Kindly advice if I can test any more…
2
votes
1 answer

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!
Alex McManns
  • 257
  • 1
  • 4
  • 13
2
votes
0 answers

What does MonkeyTalk when including its library on an iOS project?

I am wondering what is MonkeyTalk doing when embedding the static library into an iOS Project. I was trying to record some automated UI tests and I found an undesired behaviour in my app. I had the need to add the accessibility label to a custom UI…
atxe
  • 5,029
  • 2
  • 36
  • 50
1
vote
0 answers

How do I test C functions with internal ifdefs for functional equivalency?

I have a library of C functions that I optimized internally using SIMD intrinsics. These functions all look something like this: void add_array(...) { #if defined(USE_SIMD) // SIMD code here ... #else // Scalar code here ... #end } contained…
Fabian
  • 312
  • 3
  • 13
1
vote
1 answer

Run customised android monkey test from adb shell

I have written a monkey test .py file and I just want to run that file from "adb shell" rather then using monkeyrunner so is there any way to run monkey test python file from adb shell? Below is the monkey --help section where I can see we can run…
Kapil Rajput
  • 11,429
  • 9
  • 50
  • 65
1
vote
2 answers

Is there a way to run gremlin.js Monkey Tests on third party URLs?

Is it possible to run Gremlin tests on third party URLs or external websites? For e.g. If I want to run gremlin on Twitter.com, what would I have to do? I've not tried it yet, but I'm thinking a framework like nightwatch.js might be handy, but I'm…
nikjohn
  • 20,026
  • 14
  • 50
  • 86
1
vote
0 answers

How to analyse Android Monkey Test logs?

As we know, monkey test is a automatic tool for testers. But How could we analyse the logs of monkey test. Now in my project, I meet the problem. The log is: --------- beginning of crash 07-06 15:37:09.803 E/AndroidRuntime(10629): FATAL…
1
2