Skip to content

Instantly share code, notes, and snippets.

@paneq
Created July 10, 2012 08:46
Show Gist options
  • Save paneq/3082102 to your computer and use it in GitHub Desktop.
Save paneq/3082102 to your computer and use it in GitHub Desktop.
AgileGuiTesting terrible API
require 'java'
require 'AgileGuiTesting'
require 'AGTImageRecognition'
require 'minitest/unit'
require 'minitest/autorun'
ROBOCOP = @robot
class TestClicks < MiniTest::Unit::TestCase
def setup
@robot = ROBOCOP # ❤ globals
end
def test_clicking
x,y = find_image_click_coordinates("test/fixtures/button.png")
click(x+5, y+5)
# ...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment