51Testing软件测试论坛

标题: 通过 Groovy / Java 自动运行 Sikuli 测试 [打印本页]

作者: 测试积点老人    时间: 2019-1-9 15:24
标题: 通过 Groovy / Java 自动运行 Sikuli 测试
  1. import org.sikuli.script.*;

  2. public class TestSikuli {

  3.         public static void main(String[] args) {
  4.                 Screen s = new Screen();
  5.                 try{        synchronized(s){
  6.                                                 //s.click("imgs/spotlight.png", 0);
  7.                         //s.wait("imgs/spotlight-input.png");
  8.                         //s.type(null, "hello world\n", 0);
  9.                         
  10.                         s.click("helloworld.sikuli\\1422978936388.png")
  11.                         s.wait(1000)
  12.                         s.type('cmd')
  13.                         s.type(Key.ENTER)
  14.                                                
  15.                         s.wait(1000)
  16.                         s.type('echo Hello, world!')
  17.                                                
  18.                         s.type(Key.ENTER)
  19.                         //s.type('pause')
  20.                         //s.type(Key.ENTER)       
  21.                                                 s.wait(5000)
  22.                                                 s.type('exit')
  23.                                                 s.type(Key.ENTER)
  24.                                                 }
  25.                                                
  26.                                                
  27.                 }
  28.                 catch(FindFailed e){
  29.                         e.printStackTrace();
  30.                 }
  31.         }
  32. }


  33. //type(Key.ENTER)
复制代码



作者: Miss_love    时间: 2021-1-5 13:43
支持分享




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2