MonkeyTester
MonkeyTester is a mokey test library in ruby.
Installation
Add this line to your application's Gemfile:
gem 'monkey_tester'
And then execute:
$ bundle
Or install it yourself as:
$ gem install monkey_tester
Usage
Sample script
require 'monkey_tester'
MonkeyTester.setup!
walker = MonkeyTester::RandomWalker.new(
url: 'http://localhost/',
login: {
url: 'http://localhost/login',
id: {label: 'Login ID', value: 'test_id'},
password: {label: 'Password', value: 'test_pass'},
button: {label: 'Login'},
},
debug: true,
)
walker.walk
Contributing
- Fork it ( https://github.com/[my-github-username]/monkey_tester/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request