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

seleniumConsulting.ch.selenium.framework.allure.AllureTextEnum Maven / Gradle / Ivy

Go to download

Selenium-Toolkit is a Java based test-toolkit for selenium-testing with testNg. The goal of the toolkit is, to suport you in different things like 'how to manage testdata in the source', parallelisation, Webdriver-managemet, reporting and a lot more.

There is a newer version: 3.0.11
Show newest version
package seleniumConsulting.ch.selenium.framework.allure;

/**
 * This Enum maps the Keys for the allureText.properties.
 * This will be used to get the Text's for the Report.
 */
public enum AllureTextEnum {

    ValueChange("allure.valueChange"),
    Click("allure.click"),
    ScreenshotClick("allure.screenshotClick"),
    GetPage("allure.getPage"),
    ScreenshotValueChange("allure.screenshotValueChange"),
    SendKeys("allure.sendKeys"),
    VideoDownload("allure.videoDownload"),
    VideoLinkName("allure.videoLinkName")
    ;

    /**
     * Value, which is used as Key in allureText.properties to Load the Text for Report
     */
    private String value;

    /**
     * @param value which is used as Key
     */
    AllureTextEnum(String value) {
        this.value = value;
    }

    /**
     * @return value of Enum (Key for allureText.properties)
     */
    public String getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy