File tree Expand file tree Collapse file tree
java/test/org/openqa/selenium/devtools Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3434import org .openqa .selenium .WebDriver ;
3535import org .openqa .selenium .environment .webserver .NettyAppServer ;
3636import org .openqa .selenium .remote .http .*;
37+ import org .openqa .selenium .testing .Ignore ;
3738import org .openqa .selenium .testing .drivers .Browser ;
3839import org .openqa .selenium .testing .drivers .WebDriverBuilder ;
3940
@@ -77,6 +78,7 @@ public void tearDown() {
7778 }
7879
7980 @ Test
81+ @ Ignore (gitHubActions = true , reason = "Fails in GH Actions but passes locally. Needs debugging." )
8082 void shouldInterceptPatchRequest () throws MalformedURLException {
8183 AtomicBoolean seen = new AtomicBoolean (false );
8284 interceptor =
@@ -221,6 +223,7 @@ void shouldInterceptDeleteRequest() throws MalformedURLException {
221223 }
222224
223225 @ Test
226+ @ Ignore (gitHubActions = true , reason = "Fails in GH Actions but passes locally." )
224227 void shouldInterceptGetRequest () throws MalformedURLException {
225228 AtomicBoolean seen = new AtomicBoolean (false );
226229 interceptor =
Original file line number Diff line number Diff line change 3939import org .openqa .selenium .remote .http .Filter ;
4040import org .openqa .selenium .remote .http .HttpResponse ;
4141import org .openqa .selenium .remote .http .Route ;
42+ import org .openqa .selenium .testing .Ignore ;
4243import org .openqa .selenium .testing .drivers .Browser ;
4344import org .openqa .selenium .testing .drivers .WebDriverBuilder ;
4445
@@ -94,6 +95,7 @@ public void tearDown() {
9495 }
9596
9697 @ Test
98+ @ Ignore (gitHubActions = true , reason = "Fails in GH Actions but passes locally. Needs debugging." )
9799 void shouldProceedAsNormalIfRequestIsNotIntercepted () {
98100 interceptor =
99101 new NetworkInterceptor (
@@ -107,6 +109,7 @@ void shouldProceedAsNormalIfRequestIsNotIntercepted() {
107109 }
108110
109111 @ Test
112+ @ Ignore (gitHubActions = true , reason = "Fails in GH Actions but passes locally. Needs debugging." )
110113 void shouldAllowTheInterceptorToChangeTheResponse () {
111114 interceptor =
112115 new NetworkInterceptor (
@@ -197,6 +200,7 @@ void shouldBeAbleToInterceptAResponse() {
197200 }
198201
199202 @ Test
203+ @ Ignore (gitHubActions = true , reason = "Fails in GH Actions but passes locally. Needs debugging." )
200204 void shouldHandleRedirects () {
201205 try (NetworkInterceptor networkInterceptor =
202206 new NetworkInterceptor (driver , (Filter ) next -> next )) {
You can’t perform that action at this time.
0 commit comments