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

bichromate.core.bichromateConstants Maven / Gradle / Ivy

Go to download

Java, Selenium, Appium, Winium, Extend, and TestNG automated testing framework. Bichromate integrates the best of these frameworks and takes automation to the next level. With Bichromate there is one function call that builds any type of Web,IOS Mobile, Android, and Windows App driver on any platform (Windows, Mac, Linux). From Local web drivers, to SauceLabs, Browserstack, and Selenium grid. Build data driven tests is never easier. Bichromate also gives you built in Factories that, access DBs, Video Capture, FTP, POM Generation, Hilite element.

There is a newer version: 3.13
Show newest version
package bichromate.core;

public final class bichromateConstants {
	
	
	//
	// ASSERT STATES
	//
	public static final int FALSE_STATE = 0;
	public static final int UNDEFINED_STATE = 2;
	public static final int TRUE_STATE = 1;
	//
	// What type of web driver to create
	//
	public static final String localWebDriver = "local";
	public static final  String sauceLabWebDriver = "sauceLabs";
	public static final  String seleniumGridWebDriver = "seleniumGrid";
	public static final String browserStackWebDriver = "browserStackWebDriver";
	//
	// OS names
	//
	public static final String windows = "windows";
	public static final String mac = "mac";
	public static final String linux = "linux";
	//
	// Browser names defined
	//
	public static final String firefox = "firefox";
	public static final String ipad = "ipad";
	public static final String ie = "ie";
	public static final String chrome = "chrome";
	public static final String safari = "safari";
	public static final String jbrowser = "jbrowser";
	public static final String opera = "opera";
	public static final String edge = "edge";
	
	//
	// Cell Phones
	//
	public static final String iphone = "iphone";
	public static final String android = "android";
	
	//
	// What color to hilite
	//
	public static final String redHilite = "red";
	public static final String yellowHilite = "yellow";
	public static final String greenHilite = "green";
	public static final String blackHilite = "black";
	
	
	//
	// Mobile items
	//
	public static final String portrait = "PORTRAIT";
	public static final String landscape = "LANDSCAPE";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy