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!

link|improve this question
Hmm...that's funny, I think it should output some stuff regardless of whether the automation worked or not. How did you run the program from the command line? Also, good idea to put in print statements under try block to know that code at least is being executed. – David Sep 20 '11 at 5:51
Are you using Selenium for your automation? – Curtis Miller Apr 20 at 18:13
feedback

1 Answer

I believe you must have gone thru' this by now, but double check if you have followed all steps listed here -

http://sikuli.org/wiki/How%20to%20use%20Sikuli%20Script%20in%20your%20JAVA%20programs OR http://sikuli.org/docx/faq/030-java-dev.html

If yes, then provide more info on whether you got any problem in performing any of these steps?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.