в @after, мы использовали приведенный ниже код, и он делает снимок экрана, но можем ли мы добавить снимок экрана в сгенерированном сообщении junit ??
File scrFile = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);
//The below method will save the screen shot in d drive with name screenshot.png
timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(Calendar.getInstance().getTime());
screenShotName = new File("D:\\MyTest\\Screenshots\\"+timeStamp+".png");
FileUtils.copyFile(scrFile, screenShotName);