0
這裏循環語法是如何才能做到在Java中相同的Sikuli腳本Sikuli而在Java
while (exists("OK.png"),10):
click("OK.png")
的例子嗎?
這裏是我的嘗試:
Screen screen = new Screen();
Pattern image = new Pattern("OK.png");
while (screen.exists(image))
{
screen.click(image);
}
但它未能與此異常編譯:
java: SikuliTest.java:29: incompatible types
found : org.sikuli.script.Match
required: boolean
誰能提供正確的語法?
Thanks..that工作。 – Praneeth 2013-04-08 20:27:39