We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fa8355 commit 3865a8cCopy full SHA for 3865a8c
java/client/test/org/openqa/selenium/support/devtools/NetworkInterceptorTest.java
@@ -20,6 +20,7 @@
20
import com.google.common.net.MediaType;
21
import org.junit.After;
22
import org.junit.Before;
23
+import org.junit.BeforeClass;
24
import org.junit.Test;
25
import org.openqa.selenium.By;
26
import org.openqa.selenium.WebDriver;
@@ -44,6 +45,11 @@ public class NetworkInterceptorTest {
44
45
private WebDriver driver;
46
private NetworkInterceptor interceptor;
47
48
+ @BeforeClass
49
+ public static void shouldTestBeRunAtAll() {
50
+ assumeThat(Boolean.getBoolean("selenium.skiptest")).isFalse();
51
+ }
52
+
53
@Before
54
public void setup() {
55
appServer = new NettyAppServer(req -> new HttpResponse()
0 commit comments