re base code
[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 com.aventstack.extentreports.Status;
24 import org.openecomp.sdc.ci.tests.datatypes.DataTestIdEnum;
25 import org.openecomp.sdc.ci.tests.execute.setup.SetupCDTest;
26 import org.openecomp.sdc.ci.tests.utilities.GeneralUIUtils;
27 import org.openecomp.sdc.common.api.ArtifactGroupTypeEnum;
28 import org.openqa.selenium.WebElement;
29
30 import java.util.List;
31
32 public class InformationalArtifactPage extends DeploymentArtifactPage {
33
34         public InformationalArtifactPage() {
35                 super();
36         }
37
38         public static void clickAddNewArtifact() {
39                 addNewArtifact(ArtifactGroupTypeEnum.INFORMATIONAL);
40         }
41
42         public static String getArtifactDescription(String artifactLabel) throws Exception {
43                 InformationalArtifactPage.clickOnArtifact(artifactLabel);
44                 String artifactDesc = GeneralUIUtils.getWebElementByTestID(
45                                 artifactLabel + DataTestIdEnum.ArtifactPageEnum.GET_INFORMATIONAL_ARTIFACT_DESCRIPTION.getValue())
46                                 .getText();
47                 InformationalArtifactPage.clickOnArtifact(artifactLabel); // close artifact
48                 return artifactDesc;
49         }
50
51         public static List<WebElement> getElemenetsFromTable() {
52                 return GeneralUIUtils.getWebElementsListByTestID("InformationalArtifactRow");
53         }
54         
55         public static WebElement clickOnArtifact(String artifactLabel) throws Exception {
56                 try{
57                         WebElement artifact = GeneralUIUtils.getWebElementByTestID(DataTestIdEnum.ArtifactPageEnum.ARTIFACT_NAME.getValue() + artifactLabel);
58                         artifact.click();
59                         GeneralUIUtils.waitForLoader();
60                         return artifact;
61                 }
62                 catch(Exception e){
63                         throw new Exception("Artifact " + artifactLabel + "is not found");
64                 }
65         }
66         
67         
68         public static void clickDeleteArtifact(String artifactLabel) {
69                 SetupCDTest.getExtendTest().log(Status.INFO, String.format("Deleting %s Artefact ",artifactLabel));
70                 GeneralUIUtils.getWebElementByTestID(DataTestIdEnum.ArtifactPageEnum.DELETE_ARTIFACT.getValue() + artifactLabel).click();
71         }
72
73 }