From 68b59e55789bb72980013f8b9d44b59ba9516254 Mon Sep 17 00:00:00 2001
From: msagolj <37147400+msagolj@users.noreply.github.com>
Date: Thu, 4 Nov 2021 14:38:25 +0100
Subject: [PATCH] @releng adapted Page/Blueprint Properties test to new
behavior
---
testing/it/e2e-selenium/pom.xml | 2 +-
.../cq/wcm/core/components/it/seljup/tests/page/PageTests.java | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/testing/it/e2e-selenium/pom.xml b/testing/it/e2e-selenium/pom.xml
index 9b0d07223e..8629a6b411 100755
--- a/testing/it/e2e-selenium/pom.xml
+++ b/testing/it/e2e-selenium/pom.xml
@@ -272,7 +272,7 @@
com.adobe.cq
aem-selenium-it-base
- 0.2.16
+ 0.2.18
org.apache.commons
diff --git a/testing/it/e2e-selenium/src/test/java/com/adobe/cq/wcm/core/components/it/seljup/tests/page/PageTests.java b/testing/it/e2e-selenium/src/test/java/com/adobe/cq/wcm/core/components/it/seljup/tests/page/PageTests.java
index 8ca1f8f71c..0945e5d8a9 100644
--- a/testing/it/e2e-selenium/src/test/java/com/adobe/cq/wcm/core/components/it/seljup/tests/page/PageTests.java
+++ b/testing/it/e2e-selenium/src/test/java/com/adobe/cq/wcm/core/components/it/seljup/tests/page/PageTests.java
@@ -22,6 +22,7 @@
import com.adobe.cq.testing.selenium.pagewidgets.coral.CoralMultiField;
import com.adobe.cq.testing.selenium.pagewidgets.coral.Dialog;
import com.adobe.cq.testing.selenium.pagewidgets.cq.AutoCompleteField;
+import com.adobe.cq.testing.selenium.pagewidgets.cq.RolloutDialog;
import com.adobe.cq.testing.selenium.pagewidgets.cq.tabs.AdvancedTab;
import com.adobe.cq.testing.selenium.pagewidgets.cq.tabs.BlueprintTab;
import com.adobe.cq.testing.selenium.pagewidgets.cq.tabs.CloudServicesTab;
@@ -637,7 +638,7 @@ public void testBlueprintPageProperties() throws ClientException, InterruptedExc
// open the Blueprint tab
BlueprintTab blueprintTab = propertiesPage.clickTab("blueprint", BlueprintTab.class);
- BlueprintTab.RolloutDialog rolloutDialog = blueprintTab.rollout();
+ RolloutDialog rolloutDialog = blueprintTab.rollout();
Commons.webDriverWait(CoreComponentConstants.WEBDRIVER_WAIT_TIME_MS);
// check livecopy is present for rollout
assertTrue(rolloutDialog.numberOfLiveCopies() == 1, "There should be 1 livecopy");