Package org.sikuli.api

Examples of org.sikuli.api.TextTarget


        "22296"
    };

    // Find each string and display a box and a text label
    for (String stringToFind : stringsToFind){   
      Target textTarget = new TextTarget(stringToFind);
      ScreenRegion r = s.find(textTarget);
      canvas.addBox(r);
      canvas.addLabel(r, stringToFind);   
    }   
    canvas.display(5);
View Full Code Here

TOP

Related Classes of org.sikuli.api.TextTarget

Copyright © 2018 www.massapicom. 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.