Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
deepaktiwari committed Jan 22, 2025
1 parent 1b0e9fd commit 9ced574
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/ct/framework/common/CommonUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ public String getImageAsBase64(WebDriver driver, String screenshotName) throws E
File finalDestination = new File(destination);
FileUtils.copyFile(source, finalDestination);
byte[] imageBytes= IOUtils.toByteArray(new FileInputStream(destination));
System.out.println("Changes made to trigger workflow");
System.out.println("Changes made to trigger workflow...");
return Base64.getEncoder().encodeToString(imageBytes);

}
Expand Down

0 comments on commit 9ced574

Please sign in to comment.