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

com.testvagrant.optimus.commons.SystemProperties Maven / Gradle / Ivy

Go to download

Optimus Lite API to manage test devices and create appium driver based on platform

There is a newer version: 0.1.7-beta
Show newest version
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