From 7e0f0c1acda28a613a69bcd1a30b5220d3c6c45a Mon Sep 17 00:00:00 2001 From: titusfortner Date: Tue, 17 Oct 2023 14:06:44 -0500 Subject: [PATCH] [java] remove ignore annotation from tests that do not inherit from base test class --- .../browsingcontext/BrowsingContextInspectorTest.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/java/test/org/openqa/selenium/bidi/browsingcontext/BrowsingContextInspectorTest.java b/java/test/org/openqa/selenium/bidi/browsingcontext/BrowsingContextInspectorTest.java index dc7b584996ab4..08d0e939d980f 100644 --- a/java/test/org/openqa/selenium/bidi/browsingcontext/BrowsingContextInspectorTest.java +++ b/java/test/org/openqa/selenium/bidi/browsingcontext/BrowsingContextInspectorTest.java @@ -24,9 +24,9 @@ import java.util.concurrent.ExecutionException; import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeoutException; -import org.junit.Ignore; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.openqa.selenium.By; import org.openqa.selenium.WindowType; @@ -125,7 +125,7 @@ void canListenToBrowsingContextLoadedEvent() } @Test - @Ignore + @Disabled void canListenToNavigationStartedEvent() throws ExecutionException, InterruptedException, TimeoutException { try (BrowsingContextInspector inspector = new BrowsingContextInspector(driver)) { @@ -142,7 +142,7 @@ void canListenToNavigationStartedEvent() } @Test - @Ignore + @Disabled void canListenToFragmentNavigatedEvent() throws ExecutionException, InterruptedException, TimeoutException { try (BrowsingContextInspector inspector = new BrowsingContextInspector(driver)) { @@ -163,7 +163,7 @@ void canListenToFragmentNavigatedEvent() } @Test - @Ignore + @Disabled void canListenToUserPromptOpenedEvent() throws ExecutionException, InterruptedException, TimeoutException { try (BrowsingContextInspector inspector = new BrowsingContextInspector(driver)) { @@ -183,7 +183,7 @@ void canListenToUserPromptOpenedEvent() } @Test - @Ignore + @Disabled void canListenToUserPromptClosedEvent() throws ExecutionException, InterruptedException, TimeoutException { try (BrowsingContextInspector inspector = new BrowsingContextInspector(driver)) {