Skip to content
Advertisement

Screenshot on failed tests using Junit 5 Selenium parallel execution

I would like to take a screenshot every single time test fails or if multiple tests then multiple screenshots of course.

So far I understand that I can just wrap my single test with a try catch block and proceed taking a screenshot, however I would not want to wrap it in every test I have. I want it to apply to all of them without wrapping each one, do I have to do that in my setup?

JavaScript

Solution advised by Jeff

So creating Util package and adding a class that would be responsible for creating a screenshot also it would generate random name but needs to be refactored i just made it quickly to make it work

JavaScript

Then before closing it down just call the created method

JavaScript

Advertisement

Answer

What I would suggest is

  1. Create a method to take a screenshot and put that in a Utils class and call it when you want to take a screenshot. This will make taking a screenshot a lot easier because all the code lives in one place and can be easily called from anywhere.

  2. Create a tearDown() method, if you don’t have one already. Looks like it would go in the WebDriverSettings class from your currently posted code. Mark it with an @AfterEach annotation and then detect a failed test case and if it failed, take a screenshot.

    If you aren’t sure how to do that, there’s a class in JUnit 4.9 and later called TestWatcher that you can use. There are lots of examples on the web on how to use it.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement