Hi all
I am not able to integrate sikuli with web driver using following code and getting exception 'java.lang.UnsatisfiedLinkError: '.
import org.junit.Test;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.sikuli.script.FindFailed;
import org.sikuli.script.Pattern;
import org.sikuli.script.Screen;
public class Sikuli_sample {
@Test
public void functionName() throws FindFailed {
// Create a new instance of the Firefox driver
WebDriver driver = new FirefoxDriver();
// And now use this to visit Google
//Create and initialize an instance of Screen object
Screen screen = new Screen();
screen.wait("img/GoogleSearch.png");
screen.click("img/GoogleSearch.png",0);
}
}
Can any one help me out where I am wrong in the code.............
Please do the needfull