jonathanpenn / ui-auto-monkey

UI AutoMonkey is a simple stress testing script for iOS applications that runs in UI Automation and Instruments. Grass fed. Free range.
http://cocoamanifest.net
MIT License
1.47k stars 249 forks source link

clickVolumeDown() is incorrect #6

Open akeeton opened 10 years ago

akeeton commented 10 years ago

Currently, it is:

clickVolumeDown: function() {
    this.target().clickVolumeUp();
}

It should be:

clickVolumeDown: function() {
    this.target().clickVolumeDown();
}
jonathanpenn commented 10 years ago

Thanks for catching that! Want to submit a pull request?