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

com.testvagrant.optimuscloud.local.WDAServerFlag Maven / Gradle / Ivy

Go to download

The Java Client provides access to Optimus cloud for all java based projects.

The newest version!
package com.testvagrant.optimuscloud.local;

import io.appium.java_client.service.local.flags.ServerArgument;

public enum WDAServerFlag implements ServerArgument {
    WDA_PORT("--webdriveragent-port");

    private String arg;
    WDAServerFlag(String arg) {
        this.arg = arg;
    }

    @Override
    public String getArgument() {
        return arg;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy