# File AgileGuiTesting.rb, line 137
def click (x, y, delay=250, do_animation=true)
  if do_animation
    move_mouse_animated(x,y)
  else
    move_mouse(x,y);
  end
  @robot.mousePress(InputEvent::BUTTON1_MASK);
  @robot.delay(delay);
  @robot.mouseRelease(InputEvent::BUTTON1_MASK);
end