Provide user to specify the ouput name while declaring the atrributes
[sdc.git] / integration-tests / src / test / java / org / onap / sdc / frontend / ci / tests / pages / MainRightContainer.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  *
16  *  SPDX-License-Identifier: Apache-2.0
17  *  ============LICENSE_END=========================================================
18  */
19
20 package org.onap.sdc.frontend.ci.tests.pages;
21
22 import org.onap.sdc.frontend.ci.tests.utilities.GeneralUIUtils;
23
24 /**
25  * Represents the "w-sdc-main-right-container" panel that shows the list of resources/components.
26  */
27 public class MainRightContainer {
28
29     public static final String CSS_CLASS = "w-sdc-main-right-container";
30
31     private MainRightContainer() {
32
33     }
34
35     /**
36      * Checks if the resource is visible in the panel/container.
37      *
38      * @param resourceName the resource name to search in the panel/container
39      * @return {@code true} if the resource is visible, {@code false} otherwise.
40      */
41     public static boolean isResultVisible(final String resourceName) {
42         return GeneralUIUtils.isElementVisibleByTestId(resourceName);
43     }
44
45     /**
46      * Checks if the panel/container is showing no resources.
47      *
48      * @return {@code true} if the panel/container is empty, {@code false} otherwise.
49      */
50     public static boolean isEmptyResult() {
51         return GeneralUIUtils.isElementInvisibleByTestId("dashboard-Elements");
52     }
53
54 }