com.testvagrant.optimus.commons.SystemProperties 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.commons;
public class SystemProperties {
public static final String USER_DIR = System.getProperty("user.dir");
public static final String TARGET = System.getProperty("target", "android").toUpperCase();
public static final String BROWSER = System.getProperty("browser", "chrome");
public static final String RUN_MODE = System.getProperty("runMode", "local");
public static final String MOBILE_FEED = System.getProperty("mobileFeed");
public static final String WEB_FEED = System.getProperty("webFeed");
public static final boolean HEADLESS =
Boolean.parseBoolean(System.getProperty("headless", "false"));
public static final String HUB = System.getProperty("hub", "browserstack");
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy