
ua.windriver.model.automation.FindOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of windriver-java Show documentation
Show all versions of windriver-java Show documentation
A Java client for the WinDriver Agent. This client allows you to automate Windows desktop applications
using Java.
The newest version!
package ua.windriver.model.automation;
public enum FindOption implements WinDriverOption {
FIND_FIRST("FindFirst"),
FIND_ALL("FindAll");
private String option;
FindOption(String option) {
this.option = option;
}
public String get() {
return option;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy