Background: I have my sikuli-integrated selenium script on a Windows machine, and my test cases are running on a Mac (iPad Simulator). This Mac also has an appium server running on port 4723.
I want to use sikuli to click a button on the iPad Simulator. But this does not work.
/* Is there a constructor that accepts an IP argument? Like
Screen s1 = new Screen("ip of mac"); ?*/
Screen s = new Screen();
s.find(System.getProperty("user.dir")+File.seprator+"playbutton.png");
s.click(System.getProperty("user.dir")+File.seprator+"playbutton.png");