Skip to content

Commit

Permalink
Update SystemLevelTestIT to check for "Idle" instead of "0 running".
Browse files Browse the repository at this point in the history
  • Loading branch information
wcgunter committed May 2, 2024
1 parent cecfbd3 commit 73c7fa6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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<WebElement> myRows = myTable.findElements(By.tagName("td"));
Expand Down

0 comments on commit 73c7fa6

Please sign in to comment.