51Testing软件测试论坛
标题:
通过 Groovy / Java 自动运行 Sikuli 测试
[打印本页]
作者:
测试积点老人
时间:
2019-1-9 15:24
标题:
通过 Groovy / Java 自动运行 Sikuli 测试
import org.sikuli.script.*;
public class TestSikuli {
public static void main(String[] args) {
Screen s = new Screen();
try{ synchronized(s){
//s.click("imgs/spotlight.png", 0);
//s.wait("imgs/spotlight-input.png");
//s.type(null, "hello world\n", 0);
s.click("helloworld.sikuli\\1422978936388.png")
s.wait(1000)
s.type('cmd')
s.type(Key.ENTER)
s.wait(1000)
s.type('echo Hello, world!')
s.type(Key.ENTER)
//s.type('pause')
//s.type(Key.ENTER)
s.wait(5000)
s.type('exit')
s.type(Key.ENTER)
}
}
catch(FindFailed e){
e.printStackTrace();
}
}
}
//type(Key.ENTER)
复制代码
作者:
Miss_love
时间:
2021-1-5 13:43
支持分享
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2