← Back to team overview

sikuli-driver team mailing list archive

[Question #197689]: unable to configure sikuli in eclipse IDE

 

New question #197689 on Sikuli:
https://answers.launchpad.net/sikuli/+question/197689

Hi,

I am using Linux machine, i made a simple Android project in eclipse and add sikuli.script.jar file and Junit.jar file.
i wrote basic program :
package com.sikuli;

import org.sikuli.script.*;

public class testSikuli {
        public static void main(String[] args) {
                Screen s = new Screen();
                try{
                        s.click("imgs/spotlight.png", 0);
                        s.wait("imgs/spotlight-input.png");
                        s.type(null, "hello world\n", 0);
                }
                catch(FindFailed e){
                        e.printStackTrace();                    
                }

        }

}

When i am going to run this program , it is saying that the Failed to launch the sikuliScript. error should be like .png not found...


Please revert ASAP.

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.