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

com.github.jsdevel.testng.selenium.config.ConfigDefaults Maven / Gradle / Ivy

There is a newer version: 0.11.2
Show newest version
package com.github.jsdevel.testng.selenium.config;

/**
 * Constants representing default values for EnvironmentConfig.
 * 
 * @see Config
 * 
 * @author Joe Spencer
 */
public class ConfigDefaults {
  /**
   * String value of "false".
   */
  public static final String DEBUG = "disabled";

  /**
   * String value of "PhantomJS".
   */
  public static final String DRIVER = "PhantomJS";

  /**
   * No default endpoint is provided.
   */
  public static final String ENDPOINT = null;

  /**
   * String value of "TestNG-Selenium".
   */
  public static final String LOGGING_PREFIX = "TestNG-Selenium";

  /**
   * String value of "Phone".
   */
  public static final String SCREENSIZE = "Phone";

  /**
   * Value of System.getProperty("java.io.tmpdir").
   */
  public static final String TMPDIR = System.getProperty("java.io.tmpdir");

  /**
   * No default user agent is provided.
   */
  public static final String USER_AGENT = null;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy