Github user jaredjstewart commented on a diff in the pull request: https://github.com/apache/incubator-geode/pull/294#discussion_r90124555 --- Diff: geode-pulse/src/test/java/org/apache/geode/tools/pulse/tests/rules/ScreenshotOnFailureRule.java --- @@ -45,7 +45,9 @@ private void takeScreenshot(String screenshotName) { if (driver instanceof TakesScreenshot) { File tempFile = ((TakesScreenshot) driver).getScreenshotAs(OutputType.FILE); try { - FileUtils.copyFile(tempFile, new File("build/screenshots/" + screenshotName + ".png")); + File screenshot = new File("build/screenshots/" + screenshotName + ".png"); + FileUtils.copyFile(tempFile, screenshot); + System.err.println("Screenshot saved to: " + screenshot.getCanonicalPath()); --- End diff -- This is intentional, it adds some output to help find where the screenshots end up when one gets taken.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---