Hi,
I was trying to use sikuli with appium. But it always throughs exception that the element could not found.
For this image, I could not find xpath or id as it is a popup. So, I was experimenting on sikuli to click on the ‘X’ button.
Screen s = new Screen();
try{
s.find(new Pattern("/Users/LKG0716/LALIT/battery_help_close.png").exact());
s.click("/Users/LKG0716/LALIT/battery_help_close.png");
}catch(Exception x){
System.out.println("Sikuli, can't find element in iOS");
}
Any suggestions to test using sikuli.