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() {
31
31
}
32
32
33
33
@ Test
34
- @ Disabled
35
34
void canAddIntercept () {
36
35
try (Network network = new Network (driver )) {
37
36
String intercept =
@@ -41,7 +40,6 @@ void canAddIntercept() {
41
40
}
42
41
43
42
@ Test
44
- @ Disabled
45
43
void canRemoveIntercept () {
46
44
try (Network network = new Network (driver )) {
47
45
String intercept =
@@ -52,7 +50,6 @@ void canRemoveIntercept() {
52
50
}
53
51
54
52
@ Test
55
- @ Disabled
56
53
void canContinueWithAuthCredentials () {
57
54
try (Network network = new Network (driver )) {
58
55
network .addIntercept (new AddInterceptParameters (InterceptPhase .AUTH_REQUIRED ));
@@ -69,7 +66,6 @@ void canContinueWithAuthCredentials() {
69
66
}
70
67
71
68
@ Test
72
- @ Disabled
73
69
void canContinueWithoutAuthCredentials () {
74
70
try (Network network = new Network (driver )) {
75
71
network .addIntercept (new AddInterceptParameters (InterceptPhase .AUTH_REQUIRED ));
@@ -85,7 +81,6 @@ void canContinueWithoutAuthCredentials() {
85
81
}
86
82
87
83
@ Test
88
- @ Disabled
89
84
void canCancelAuth () {
90
85
try (Network network = new Network (driver )) {
91
86
network .addIntercept (new AddInterceptParameters (InterceptPhase .AUTH_REQUIRED ));
@@ -99,7 +94,6 @@ void canCancelAuth() {
99
94
}
100
95
101
96
@ Test
102
- @ Disabled
103
97
void canFailRequest () {
104
98
try (Network network = new Network (driver )) {
105
99
network .addIntercept (new AddInterceptParameters (InterceptPhase .BEFORE_REQUEST_SENT ));
You can’t perform that action at this time.
0 commit comments