bichromate.core.bichromateConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Bichromate Show documentation
Show all versions of Bichromate Show documentation
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.
package bichromate.core;
public class bichromateConstants {
//
// ASSERT STATES
//
public final int FALSE_STATE = 0;
public final int UNDEFINED_STATE = 2;
public final int TRUE_STATE = 1;
//
// What type of web driver to create
//
public final String localWebDriver = "local";
public final String sauceLabWebDriver = "sauceLabs";
public final String seleniumGridWebDriver = "seleniumGrid";
public final String browserStackWebDriver = "browserStackWebDriver";
//
// OS names
//
public final String windows = "windows";
public final String mac = "mac";
public final String linux = "linux";
//
// Browser names defined
//
public final String firefox = "firefox";
public final String ipad = "ipad";
public final String ie = "ie";
public final String chrome = "chrome";
public final String safari = "safari";
public final String jbrowser = "jbrowser";
//
// Cell Phones
//
public final String iphone = "iphone";
public final String android = "android";
//
// What color to hilite
//
public final String redHilite = "red";
public final String yellowHilite = "yellow";
public final String greenHilite = "green";
public final String blackHilite = "black";
//
// Mobile items
//
public final String portrait = "PORTRAIT";
public final String landscape = "LANDSCAPE";
}