Recherche…


JUnit

Si vous utilisez JUnit pour exécuter, vous pouvez étendre la classe TestWatcher :

public class TestRules extends TestWatcher {

    @Override
    protected void failed(Throwable e, Description description) {
        // This will be called whenever a test fails.
    }

Donc, dans votre classe de test, vous pouvez simplement l'appeler:

public class testClass{

@Rule
public TestRules testRules = new TestRules();

@Test
public void doTestSomething() throws Exception{
    // If the test fails for any reason, it will be caught be testrules.
}

EventFiringWebDriver

Utiliser le EventFiringWebDriver . Vous pouvez y attacher WebDriverEventListener et remplacer les méthodes, à savoir la méthode onException:

EventFiringWebDriver driver = new EventFiringWebDriver(new FirefoxDriver());
WebDriverEventListener listener = new AbstractWebDriverEventListener() {
    @Override
    public void onException(Throwable t, WebDriver driver) {
        // Take action
    }
};
driver.register(listener);


Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow