Feature summary
As discussed in another issue, here is the suggestion to support being able to ignore certain exceptions when not expecting exceptions.
It would be similar to what can be done with the Selenium API:
// Waiting 30 seconds for an element to be present on the page, checking
// for its presence once every 5 seconds.
Wait<WebDriver> wait = new FluentWait<WebDriver>(driver)
.withTimeout(Duration.ofSeconds(30L))
.pollingEvery(Duration.ofSeconds(5L))
.ignoring(NoSuchElementException.class);
Example
That is how it can look in AssertJ:
assertThatCode(() -> { thisFunctionDoesNothing(); })
.doesNotThrowAnyExceptionExcept(NoSuchElementException.class, IOException.class);
Feature summary
As discussed in another issue, here is the suggestion to support being able to ignore certain exceptions when not expecting exceptions.
It would be similar to what can be done with the Selenium API:
Example
That is how it can look in AssertJ: