Exemplo n.º 1
0
 public String getTopWindowName() {
   if (runtime == null || runtime.getTopWindowId() == null) return null;
   return runtime.getTopWindowId().getTitle();
 }
Exemplo n.º 2
0
 public void insertChecklist(String name) {
   recorder.recordInsertChecklistElement(runtime.getTopWindowId(), name);
 }
Exemplo n.º 3
0
 public void recordShowChecklist(String fileName) {
   recorder.recordShowChecklistElement(runtime.getTopWindowId(), fileName);
 }
Exemplo n.º 4
0
 public String insertScript(String function) {
   WindowId topWindowId = runtime.getTopWindowId();
   runtime.insertScript(function);
   String s = recorder.recordInsertScriptElement(topWindowId, function);
   return s;
 }