Examples of DesktopCanvas


Examples of org.sikuli.api.visual.DesktopCanvas

    // Once the target is visible, it returns a screen region object corresponding
    // to the region occupied by this target
    ScreenRegion r = s.wait(imageTarget,5000);
       
    // Display "Hello World" next to the found target for 3 seconds
    Canvas canvas = new DesktopCanvas();
    canvas.addLabel(r, "Hello World").display(3);
   
    // Click the center of the found target
    Mouse mouse = new DesktopMouse();
    mouse.click(r.getCenter());
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.