截图一
Date date = new Date(); SimpleDateFormat simpleDateFormat = new SimpleDateFormat("YYYY-MM-dd HH:mm:ss"); String format = simpleDateFormat.format(date); File screenshotAs = ((TakesScreenshot) webDriver).getScreenshotAs(OutputType.FILE); File file = new File("D:\\" + "111111111111111111"+ ".png"); try { FileUtils.copyFile(screenshotAs,file); } catch (IOException e) { e.printStackTrace(); } System.out.println("发生异常,原因:"+throwable.getMessage()); System.out.println("截图保存"+"D:\\"+format+".png"); }