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

com.zebrunner.carina.utils.performance.ACTION_NAME Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright 2020-2022 Zebrunner Inc (https://www.zebrunner.com).
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *******************************************************************************/
package com.zebrunner.carina.utils.performance;


public enum ACTION_NAME {
    CLICK("click"),
    CLICK_BY_JS("click_by_js"),
    CLICK_BY_ACTIONS("click_by_actions"),
    DOUBLE_CLICK("double_click"),
    RIGHT_CLICK("right_click"),
    HOVER("hover"),
    SEND_KEYS("send_keys"),
    TYPE("type"),
    ATTACH_FILE("attach_file"),
    GET_TEXT("get_text"),
    GET_LOCATION("get_location"),
    GET_SIZE("get_size"),
    GET_ATTRIBUTE("get_attribute"),
    PAUSE("pause"),
    WAIT("wait"),
    CHECK("check"),
    UNCHECK("uncheck"),
    IS_CHECKED("is_checked"),
    SELECT("select"),
    SELECT_VALUES("select_values"),
    SELECT_BY_MATCHER("select_by_matcher"),
    SELECT_BY_PARTIAL_TEXT("select_by_partial_text"),
    SELECT_BY_INDEX("select_by_index"),
    GET_SELECTED_VALUE("get_selected_value"),
    GET_SELECTED_VALUES("get_selected_values"),
    CAPTURE_SCREENSHOT("capture_screenshot"),
    GET_LOGS("get_logs"),;


    private String key;

    private ACTION_NAME(String key) {
        this.key = key;
    }

    public String getKey() {
        return this.key;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy