
ua.windriver.model.automation.StartMethodNameOption 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 StartMethodNameOption implements WinDriverOption {
LAUNCH_BY_EXECUTABLE("LaunchByExecutable"),
ATTACH_TO_PROCESS_BY_PROCESS_NAME("AttachToProcessByProcessName"),
ATTACH_TO_PROCESS_BY_PROCESS_ID("AttachToProcessByProcessId"),
ATTACH_OR_LAUNCH_BY_PROCESS_NAME("AttachOrLaunchByProcessName");
private String name;
StartMethodNameOption(String option) {
this.name = option;
}
public String get() {
return name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy