[SDC-29] rebase continue work to align source
[sdc.git] / ui-ci / src / main / java / org / openecomp / sdc / ci / tests / pages / InformationalArtifactPage.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.ci.tests.pages;
22
23 import java.util.List;
24
25 import org.openecomp.sdc.ci.tests.datatypes.DataTestIdEnum;
26 import org.openecomp.sdc.ci.tests.execute.setup.SetupCDTest;
27 import org.openecomp.sdc.ci.tests.utilities.GeneralUIUtils;
28 import org.openecomp.sdc.common.api.ArtifactGroupTypeEnum;
29 import org.openqa.selenium.WebElement;
30
31 import com.aventstack.extentreports.Status;
32
33 public class InformationalArtifactPage extends DeploymentArtifactPage {
34
35         public InformationalArtifactPage() {
36                 super();
37         }
38
39         public static void clickAddNewArtifact() {
40                 addNewArtifact(ArtifactGroupTypeEnum.INFORMATIONAL);
41         }
42
43         public static String getArtifactDescription(String artifactLabel) throws Exception {
44                 InformationalArtifactPage.clickOnArtifact(artifactLabel);
45                 String artifactDesc = GeneralUIUtils.getWebElementByTestID(
46                                 artifactLabel + DataTestIdEnum.ArtifactPageEnum.GET_INFORMATIONAL_ARTIFACT_DESCRIPTION.getValue())
47                                 .getText();
48                 InformationalArtifactPage.clickOnArtifact(artifactLabel); // close artifact
49                 return artifactDesc;
50         }
51
52         public static List<WebElement> getElemenetsFromTable() {
53                 return GeneralUIUtils.getWebElementsListByTestID("InformationalArtifactRow");
54         }
55         
56         public static WebElement clickOnArtifact(String artifactLabel) throws Exception {
57                 try{
58                         WebElement artifact = GeneralUIUtils.getWebElementByTestID(DataTestIdEnum.ArtifactPageEnum.ARTIFACT_NAME.getValue() + artifactLabel);
59                         artifact.click();
60                         GeneralUIUtils.waitForLoader();
61                         return artifact;
62                 }
63                 catch(Exception e){
64                         throw new Exception("Artifact " + artifactLabel + "is not found");
65                 }
66         }
67         
68         
69         public static void clickDeleteArtifact(String artifactLabel) {
70                 SetupCDTest.getExtendTest().log(Status.INFO, String.format("Deleting %s Artefact ",artifactLabel));
71                 GeneralUIUtils.getWebElementByTestID(DataTestIdEnum.ArtifactPageEnum.DELETE_ARTIFACT.getValue() + artifactLabel).click();
72         }
73
74 }