bichromate.dataStore.sTestDOMObjects 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.dataStore;
final public class sTestDOMObjects {
private sTestDOMObjects(){
}
public static final String BUTTON = "button";
public static final String DROPDOWN = "dropdown";
public static final String TEXTINPUT = "textinput";
public static final String LINK = "link";
public static final String TABLE = "table";
public static final String RADIOBUTTON = "radiobutton";
public static final String CHECKBOX = "checkbox";
public static final String RANGE = "range";
public static final String SELECT = "select";
public static final String AELEMENT = "a";
public static final String TEXTAREAELEMENT = "textarea";
public static final String INPUTELEMENT = "input";
public static final String TABLINK = "tablink";
}