From 85618b90c7c03387080577b587cfd74bca490e69 Mon Sep 17 00:00:00 2001 From: Joshua Rodriguez Date: Tue, 16 Apr 2024 06:14:55 -0700 Subject: [PATCH] wip --- .../java/jpl/cws/test/integration/ui/DeploymentsTestIT.java | 2 +- .../java/jpl/cws/test/integration/ui/InitiatorsTestIT.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cws-test/src/test/java/jpl/cws/test/integration/ui/DeploymentsTestIT.java b/cws-test/src/test/java/jpl/cws/test/integration/ui/DeploymentsTestIT.java index efab7a80..8cff5e20 100644 --- a/cws-test/src/test/java/jpl/cws/test/integration/ui/DeploymentsTestIT.java +++ b/cws-test/src/test/java/jpl/cws/test/integration/ui/DeploymentsTestIT.java @@ -89,7 +89,7 @@ public void processCompletedTest() throws IOException { String color = driver.findElement(By.className("progress-bar-success")).getCssValue("background-color"); log.info(color); - if (color.equals("rgba(92, 184, 92, 1)")) { //color = blue + if (color.equals("rgba(13, 110, 253, 1)")) { //color = blue scriptPass = true; testCasesCompleted++; } diff --git a/cws-test/src/test/java/jpl/cws/test/integration/ui/InitiatorsTestIT.java b/cws-test/src/test/java/jpl/cws/test/integration/ui/InitiatorsTestIT.java index 744f7f8d..9babba38 100644 --- a/cws-test/src/test/java/jpl/cws/test/integration/ui/InitiatorsTestIT.java +++ b/cws-test/src/test/java/jpl/cws/test/integration/ui/InitiatorsTestIT.java @@ -183,7 +183,7 @@ public void runStartInitiatorTest() throws IOException { sleep(1000); screenShot("InitiatorTestIT-runStartInitiatorTestColor"); - if (color.equals("rgba(13, 110, 253, 1)")) { //color = green + if (color.equals("rgba(13, 110, 253, 1)")) { //color = blue scriptPass = true; testCasesCompleted++; } @@ -330,7 +330,7 @@ public void runCronInitiatorTest() throws IOException { String color = driver.findElement(By.className("progress-bar-success")).getCssValue("background-color"); log.info(color); - if (color.equals("rgba(92, 184, 92, 1)")) { //color = blue + if (color.equals("rgba(13, 110, 253, 1)")) { //color = blue scriptPass = true; procCounter = procCounter + 2; testCasesCompleted++;