Skip to content

Commit

Permalink
ignore NoSuchSessionException when releasing the test driver
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Oct 20, 2024
1 parent dbf34f9 commit 33fb001
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1606,6 +1606,9 @@ public void releaseResources() {
catch (final NoSuchWindowException e) {
// ignore
}
catch (final NoSuchSessionException e) {
// ignore
}
catch (final UnhandledAlertException e) {
ex = e;
unhandledAlerts.add(e.getMessage());
Expand Down

0 comments on commit 33fb001

Please sign in to comment.