From 9ced5740d7e350bcddf571515a9cedfeb15c7103 Mon Sep 17 00:00:00 2001 From: deepaktiwari Date: Wed, 22 Jan 2025 13:19:26 +0530 Subject: [PATCH] updated --- src/main/java/com/ct/framework/common/CommonUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/ct/framework/common/CommonUtil.java b/src/main/java/com/ct/framework/common/CommonUtil.java index ae12166..dba9f78 100644 --- a/src/main/java/com/ct/framework/common/CommonUtil.java +++ b/src/main/java/com/ct/framework/common/CommonUtil.java @@ -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); }