From 73c7fa6df5e822b67a5e9146554309ad1ac53405 Mon Sep 17 00:00:00 2001 From: Will Gunter Date: Thu, 2 May 2024 12:52:56 -0400 Subject: [PATCH] Update SystemLevelTestIT to check for "Idle" instead of "0 running". --- .../java/jpl/cws/test/integration/ui/SystemLevelTestIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cws-test/src/test/java/jpl/cws/test/integration/ui/SystemLevelTestIT.java b/cws-test/src/test/java/jpl/cws/test/integration/ui/SystemLevelTestIT.java index fb94b15b..d48895aa 100644 --- a/cws-test/src/test/java/jpl/cws/test/integration/ui/SystemLevelTestIT.java +++ b/cws-test/src/test/java/jpl/cws/test/integration/ui/SystemLevelTestIT.java @@ -63,7 +63,7 @@ public void runWorkerTest() throws IOException { log.info("Checking if 1 worker is up, 0 are down, and none are running..."); if (findOnPage("1 Workers (1 up, 0 down)") - && findOnPage("0 running")) { + && findOnPage("Idle")) { log.info("SUCCESS: 1 worker is up, 0 are down, and none are running."); WebElement myTable = driver.findElement(By.id("workers-table")); List myRows = myTable.findElements(By.tagName("td"));