All Downloads are FREE. Search and download functionalities are using the official Maven repository.

okw.gui.IGUIWindow Maven / Gradle / Ivy

Go to download

This is the core-module of OpenKeyWord. This module is automatically integrated by the adapters. In GUI automation, the core module is automatically integrated by the GUI modules (dependencies).

There is a newer version: 0.2.44
Show newest version
package okw.gui;

import java.util.ArrayList;

public interface IGUIWindow
{
  ArrayList getCaption();
  Boolean getExists();
  Boolean getIsActive();
    
  void TypeKeyWindow(ArrayList Val);
  void SelectWindow();
  
  void StartApp();
  void StopApp();
  
  Boolean VerifyWindowExists();
  Boolean VerifyIsWindowActive();
  ArrayList VerifyWindowCaption();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy