SeleniumConsts.java 421 B

123456789101112131415161718
  1. package jnpf.selenium.consts;
  2. import org.slf4j.Marker;
  3. import org.slf4j.MarkerFactory;
  4. public class SeleniumConsts {
  5. private SeleniumConsts() {
  6. }
  7. public static final String SELENIUM = "selenium";
  8. public static final Marker MARKER = MarkerFactory.getMarker(SELENIUM);
  9. public static final String BROWSER_TYPE_CHROME = "chrome";
  10. public static final String BROWSER_BEAN_PREFIX = "selenium_";
  11. }