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

de.ppi.selenium.logevent.api.EventSource Maven / Gradle / Ivy

There is a newer version: 0.12
Show newest version
package de.ppi.selenium.logevent.api;

import org.openqa.selenium.WebElement;

/**
 * Source of the event.
 *
 */
public enum EventSource {
    /**
     * Event comes form a {@link WebElement}, before the action.
     */
    WEBELEMENT_BEFORE,
    /**
     * Event comes form a {@link WebElement}, after the action.
     */
    WEBELEMENT_AFTER,
    /** Event comes from a widget. */
    WIDGET,
    /** Event comes from a fragment. */
    FRAGMENT,
    /** Event comes from a page. */
    PAGE,
    /** Event comes from a webdriver or browser. */
    WEBDRIVER_BEFORE,
    /** Event comes from a webdriver or browser. */
    WEBDRIVER_AFTER,
    /** Event comes from a assertion. */
    ASSERTION,
    /** Event comes from a test. */
    TEST;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy