Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/youpy/mac-robot
A Library to Automate User Interactions
https://github.com/youpy/mac-robot
automation mac ruby
Last synced: 2 months ago
JSON representation
A Library to Automate User Interactions
- Host: GitHub
- URL: https://github.com/youpy/mac-robot
- Owner: youpy
- License: mit
- Created: 2012-03-28T15:45:48.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2024-03-26T01:42:09.000Z (10 months ago)
- Last Synced: 2024-03-26T02:42:18.102Z (10 months ago)
- Topics: automation, mac, ruby
- Language: Ruby
- Homepage:
- Size: 94.7 KB
- Stars: 36
- Watchers: 4
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.rdoc
- License: LICENSE.txt
Awesome Lists containing this project
README
= mac-robot
A Library to Automate User Interactions
== Synopsis
require 'mac-robot'
robot = Mac::Robot.new
=== Automate mouse
robot.mouse_press
robot.mouse_move(250, 250)
robot.mouse_drag(100, 200)
robot.mouse_releaserobot.mouse_current_location # => 100, 200
robot.scroll_wheel(:x => 10, :y => -20, :z => 5)
=== Automate keyboard
[0x04, 0x0e, 0x25, 0x25, 0x1f].each do |keycode|
robot.key_press(keycode)
robot.key_release(keycode)
end=== Get color of given pixel on screen
color = robot.get_pixel_color(10, 20)
color.red
color.green
color.blue
color.alpha
== Contributing to mac-robot
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
* Fork the project.
* Start a feature/bugfix branch.
* Commit and push until you are happy with your contribution.
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.== Copyright
Copyright (c) 2012 youpy. See LICENSE.txt for
further details.