summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/att/ecomp/dcae/ci/ui/pages/DCAEGeneralPage.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/att/ecomp/dcae/ci/ui/pages/DCAEGeneralPage.java')
-rw-r--r--src/main/java/com/att/ecomp/dcae/ci/ui/pages/DCAEGeneralPage.java41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/main/java/com/att/ecomp/dcae/ci/ui/pages/DCAEGeneralPage.java b/src/main/java/com/att/ecomp/dcae/ci/ui/pages/DCAEGeneralPage.java
deleted file mode 100644
index f1f947a..0000000
--- a/src/main/java/com/att/ecomp/dcae/ci/ui/pages/DCAEGeneralPage.java
+++ /dev/null
@@ -1,41 +0,0 @@
-package com.att.ecomp.dcae.ci.ui.pages;
-
-import java.util.UUID;
-
-import org.openecomp.d2.ci.report.ExtentTestActions;
-import org.openecomp.d2.ci.utilities.GeneralUIUtils;
-import org.openqa.selenium.WebElement;
-import com.aventstack.extentreports.Status;
-
-public class DCAEGeneralPage {
-
- public static String addAssetName(String name)
- {
- WebElement nameTextbox = GeneralUIUtils.getWebElementByTestID("name");
- String assetName = name + UUID.randomUUID();
- nameTextbox.clear();
- nameTextbox.sendKeys(assetName);
- GeneralUIUtils.ultimateWait();
- ExtentTestActions.log(Status.INFO,String.format("Add asset name: %s.", assetName));
- return assetName;
- }
-
- public static void addAssetDescription(String description)
- {
- ExtentTestActions.log(Status.INFO,"Add asset description");
- WebElement descriptionTextbox = GeneralUIUtils.getWebElementByTestID("description");
- descriptionTextbox.clear();
- descriptionTextbox.sendKeys(description);
- GeneralUIUtils.ultimateWait();
- }
-
-
- public static void clickSaveAsset() throws Exception
- {
- ExtentTestActions.log(Status.INFO,"Click Save asset");
- GeneralUIUtils.waitForElementInVisibilityByTestId("Save-General");
- GeneralUIUtils.clickOnElementByTestId("Save-General");
- GeneralUIUtils.ultimateWait();
- }
-
-}