Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to capture a screenshot only upon unexpected exception.

share|improve this question
You should post your solution as an actual answer(which you can accept later). Your problem seems to be solved. – oers Sep 27 '11 at 11:29
Done. Thanks for your suggestion. – Alberto Oct 4 '11 at 15:06

1 Answer

up vote 3 down vote accepted

Note.- This answer could be outdated. The answer is based on Selenium 2.15

Using TestWatcher does the trick (the unit test must extend following BaseTest):

public abstract class BaseTest {
// ...
protected WebDriver driver;


@Rule
public MethodRule testWatcher = new TestWatcher() {
    @Override
    public void starting(Description desc) {
        LOG.info("Launching browser...");
        driver = Utils.getFirefoxDriver();
    }

    @Override
    public void finished(Description desc) {
        LOG.info("Quitting driver...");
        driver.quit();
    }

    @Override
    public void failed(Throwable e, Description d) {
        LOG.debug("Creating screenshot...");
        File scrFile = ((TakesScreenshot) driver).getScreenshotAs(
                OutputType.FILE);
        String scrFilename = "Screenshot.png";
        File outputFile = new File(SCREEN_SHOTS_RESULTS_PATH, scrFilename);
        LOG.info(scrFilename + " screenshot created.");
        try {
            org.​apache.​commons.​io.FileUtils.copyFile(scrFile, outputFile);
        } catch (IOException ioe) {
            LOG.error("Error copying screenshot after exception.", ioe);
        }
    }
};
}

Note

Utils.getFirefoxDriver() returns a customized WebDriver. Something like:

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxBinary;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxProfile;

public class Utils {
    // ...
    public static WebDriver getFirefoxDriver() {
        FirefoxProfile firefoxProfile = new FirefoxProfile();

        // Profile customization. For example:
        // firefoxProfile.addExtension("firebug-1.8.4-fx.xpi");
        // firefoxProfile.setPreference("extensions.firebug.currentVersion","1.8.4");

        FirefoxBinary firefox = new FirefoxBinary();

        // Firefox customization. For example:
        // firefox.setEnvironmentProperty("DISPLAY", display);

        WebDriver driver = new FirefoxDriver(firefox, firefoxProfile);

        // WebDriver customizations. For example:
        // driver.manage().timeouts().implicitlyWait(SHORT_TIMEOUT_S, TimeUnit.SECONDS);
        return driver;
    }
}
share|improve this answer
1  
JUnit has since deprecated TestWatchman in favor of TestWatcher. – mikeslattery Dec 14 '12 at 19:57
I can't find Utils.getFirefoxDriver();. Has this been removed or is this your own implementation? How can I get the correct driver instance? – vanto Jan 9 at 13:06
@vanto It is my own implementation. I have added a clarification to my answer. – Alberto Jan 11 at 14:04
@mikeslattery thanks for your notice. I have updated the answer. – Alberto Jan 11 at 14:29
@Alberto thanks for the clarification. – vanto Jan 11 at 22:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.