com.testvagrant.optimus.core.mobile.OptimusServerFlag Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of optimus-lite Show documentation
Show all versions of optimus-lite Show documentation
Optimus Lite API to manage test devices and create appium driver based on platform
package com.testvagrant.optimus.core.mobile;
import io.appium.java_client.service.local.flags.ServerArgument;
public enum OptimusServerFlag implements ServerArgument {
WDA_PORT("--webdriveragent-port"),
/** This will print the appium server logs to stdout */
ENABLE_CONSOLE_LOGS("--enable-console-logs");
private final String arg;
OptimusServerFlag(String arg) {
this.arg = arg;
}
@Override
public String getArgument() {
return arg;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy