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

ua.windriver.model.automation.StartMethodNameOption Maven / Gradle / Ivy

Go to download

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