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 / VspCommitModal.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 lombok.AllArgsConstructor;
23 import lombok.Getter;
24 import org.openqa.selenium.By;
25 import org.openqa.selenium.WebDriver;
26 import org.openqa.selenium.WebElement;
27 import org.slf4j.Logger;
28 import org.slf4j.LoggerFactory;
29
30 /**
31  * Handles the VSP Commit Modal UI actions
32  */
33 public class VspCommitModal extends AbstractPageObject {
34
35     private static final Logger LOGGER = LoggerFactory.getLogger(VspCommitModal.class);
36
37     private WebElement wrappingElement;
38
39     public VspCommitModal(final WebDriver webDriver) {
40         super(webDriver);
41     }
42
43     public void isLoaded() {
44         LOGGER.debug("Finding element with xpath '{}'", XpathSelector.MODAL_DIV.getXpath());
45         wrappingElement = waitForElementVisibility(XpathSelector.MODAL_DIV.getXpath());
46     }
47
48     /**
49      * Fills the comment text area with a default message.
50      */
51     public void fillCommentWithDefaulMessage() {
52         final WebElement commentTxt = wrappingElement.findElement(By.xpath(XpathSelector.COMMIT_COMMENT_TXT.getXpath()));
53         commentTxt.sendKeys("First VSP version");
54     }
55
56     /**
57      * Clicks on the modal submit and confirms success.
58      */
59     public void submit() {
60         final WebElement commitAndSubmitBtn = wrappingElement.findElement(By.xpath(XpathSelector.COMMIT_AND_SUBMIT_BTN.getXpath()));
61         commitAndSubmitBtn.click();
62         confirmSuccess();
63     }
64
65     /**
66      * Confirms the success of the modal submission.
67      */
68     private void confirmSuccess() {
69         final WebElement successModal = waitForElementVisibility(By.xpath(XpathSelector.SUCCESS_MODAL_DIV.getXpath()), 60);
70         successModal.findElement(By.xpath(XpathSelector.MODAL_CANCEL_BTN.getXpath())).click();
71     }
72
73     /**
74      * Enum that contains identifiers and xpath expressions to elements related to the enclosing page object.
75      */
76     @AllArgsConstructor
77     private enum XpathSelector {
78         MODAL_DIV("sdc-modal-type-custom", "//div[contains(@class, '%s')]"),
79         COMMIT_AND_SUBMIT_BTN("form-submit-button", "//button[@data-test-id='%s']"),
80         COMMIT_COMMENT_TXT("commit-comment-text", "//textarea[@data-test-id='%s']"),
81         SUCCESS_MODAL_DIV("sdc-modal-type-info", "//div[contains(@class, '%s')]"),
82         MODAL_CANCEL_BTN("sdc-modal-cancel-button", "//button[@data-test-id='%s']");
83
84         @Getter
85         private final String id;
86         private final String xpath;
87
88         public String getXpath() {
89             return String.format(xpath, id);
90         }
91     }
92
93 }