It's usually desirable to always take a screenshot when test failed. The concept of JUnit rules makes this an easy task. First, implement a rule as shown below:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class TakeScreenshotOnFailRule extends TestWatcher { | |
protected String _folder; | |
protected WebDriver _driver; | |
public TestRule(WebDriver driver, String folder) { | |
_folder = folder; | |
_driver = driver; | |
} | |
@Override | |
protected void failed(Throwable e, Description description) { | |
super.failed(e, description); | |
String name = description.getDisplayName(); | |
name = _folder + "\\" + name + ".png"; | |
File screenshot = ((TakesScreenshot)_driver).getScreenshotAs(OutputType.FILE); | |
try { | |
FileUtils.copyFile(screenshot, new File(name)); | |
} catch (Exception ex) { | |
throw new RuntimeException(ex); | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Rule | |
public TakeScreenshotOnFailRule rule = new TakeScreenshotOnFailRule(driver, folderName); |
- Make sure the file name is legal for the OS (for example, the following characters are not allowed in Windows file name: \/:?*<>|\
- Pictures might be further organized into folders by test cases?
- The rule might be declared in a base class so that all test cases have the same behavior without extra boiler plate code
No comments:
Post a Comment