I have recorded my test using the GUI desktop application, HAVE SIKULI CLICK A FLASH BUTTON.
Now I would like to use my sikuli script in Java as per below:
import org.sikuli.script.*;
public class TestSikuli {
public static void main(String[] args) {
Screen s = new Screen();
try{
s.wait("imgs/ViewPlaylist.png");
s.click("imgs/ViewPlaylist.png", 0);
s.type(null, "hello world\n", 0);
}
catch(FindFailed e){
e.printStackTrace();
}
}
But the program is not running or displaying any output.
Could u plz look into the code and make my Java/Sikuli script run.
Thanks!