File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
examples/java/src/test/java/dev/selenium/bidirectional/webdriver_bidi Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ public void setup() {
3131 }
3232
3333 @ Test
34- @ Disabled
3534 void canAddIntercept () {
3635 try (Network network = new Network (driver )) {
3736 String intercept =
@@ -41,7 +40,6 @@ void canAddIntercept() {
4140 }
4241
4342 @ Test
44- @ Disabled
4543 void canRemoveIntercept () {
4644 try (Network network = new Network (driver )) {
4745 String intercept =
@@ -52,7 +50,6 @@ void canRemoveIntercept() {
5250 }
5351
5452 @ Test
55- @ Disabled
5653 void canContinueWithAuthCredentials () {
5754 try (Network network = new Network (driver )) {
5855 network .addIntercept (new AddInterceptParameters (InterceptPhase .AUTH_REQUIRED ));
@@ -69,7 +66,6 @@ void canContinueWithAuthCredentials() {
6966 }
7067
7168 @ Test
72- @ Disabled
7369 void canContinueWithoutAuthCredentials () {
7470 try (Network network = new Network (driver )) {
7571 network .addIntercept (new AddInterceptParameters (InterceptPhase .AUTH_REQUIRED ));
@@ -85,7 +81,6 @@ void canContinueWithoutAuthCredentials() {
8581 }
8682
8783 @ Test
88- @ Disabled
8984 void canCancelAuth () {
9085 try (Network network = new Network (driver )) {
9186 network .addIntercept (new AddInterceptParameters (InterceptPhase .AUTH_REQUIRED ));
@@ -99,7 +94,6 @@ void canCancelAuth() {
9994 }
10095
10196 @ Test
102- @ Disabled
10397 void canFailRequest () {
10498 try (Network network = new Network (driver )) {
10599 network .addIntercept (new AddInterceptParameters (InterceptPhase .BEFORE_REQUEST_SENT ));
You can’t perform that action at this time.
0 commit comments