Tutorial by Examples

If you are using JUnit to execute, you can extend the TestWatcher class: public class TestRules extends TestWatcher { @Override protected void failed(Throwable e, Description description) { // This will be called whenever a test fails. } So in your test class you can si...
Using the EventFiringWebDriver. You can attach WebDriverEventListener to it and override methodes, ie the onException method: EventFiringWebDriver driver = new EventFiringWebDriver(new FirefoxDriver()); WebDriverEventListener listener = new AbstractWebDriverEventListener() { @Override pu...

Page 1 of 1