Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jdrodjpl committed Apr 16, 2024
1 parent d646727 commit 85618b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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++;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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++;
}
Expand Down Expand Up @@ -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++;
Expand Down

0 comments on commit 85618b9

Please sign in to comment.