@@ -34,15 +34,13 @@ public void setup() {
34
34
}
35
35
36
36
@ Test
37
- @ Disabled
38
37
void testCreateABrowsingContextForGivenId () {
39
38
String id = driver .getWindowHandle ();
40
39
BrowsingContext browsingContext = new BrowsingContext (driver , id );
41
40
Assertions .assertEquals (id , browsingContext .getId ());
42
41
}
43
42
44
43
@ Test
45
- @ Disabled
46
44
void canLocateNodes () {
47
45
BrowsingContext browsingContext = new BrowsingContext (driver , driver .getWindowHandle ());
48
46
driver .get ("https://www.selenium.dev/selenium/web/xhtmlTest.html" );
@@ -54,7 +52,6 @@ void canLocateNodes() {
54
52
}
55
53
56
54
@ Test
57
- @ Disabled
58
55
void canLocateNodesWithJustLocator () {
59
56
BrowsingContext browsingContext = new BrowsingContext (driver , driver .getWindowHandle ());
60
57
driver .get ("https://www.selenium.dev/selenium/web/xhtmlTest.html" );
@@ -64,7 +61,6 @@ void canLocateNodesWithJustLocator() {
64
61
}
65
62
66
63
@ Test
67
- @ Disabled
68
64
void canLocateNode () {
69
65
BrowsingContext browsingContext = new BrowsingContext (driver , driver .getWindowHandle ());
70
66
driver .get ("https://www.selenium.dev/selenium/web/xhtmlTest.html" );
@@ -74,7 +70,6 @@ void canLocateNode() {
74
70
}
75
71
76
72
@ Test
77
- @ Disabled
78
73
void canLocateNodesWithCSSLocator () {
79
74
BrowsingContext browsingContext = new BrowsingContext (driver , driver .getWindowHandle ());
80
75
@@ -93,7 +88,6 @@ void canLocateNodesWithCSSLocator() {
93
88
}
94
89
95
90
@ Test
96
- @ Disabled
97
91
void canLocateNodesWithXPathLocator () {
98
92
BrowsingContext browsingContext = new BrowsingContext (driver , driver .getWindowHandle ());
99
93
@@ -127,7 +121,6 @@ void canLocateNodesWithInnerText() {
127
121
}
128
122
129
123
@ Test
130
- @ Disabled
131
124
void canLocateNodesWithMaxNodeCount () {
132
125
BrowsingContext browsingContext = new BrowsingContext (driver , driver .getWindowHandle ());
133
126
@@ -141,7 +134,6 @@ void canLocateNodesWithMaxNodeCount() {
141
134
}
142
135
143
136
@ Test
144
- @ Disabled
145
137
void canLocateNodesGivenStartNodes () {
146
138
String handle = driver .getWindowHandle ();
147
139
BrowsingContext browsingContext = new BrowsingContext (driver , handle );
@@ -177,7 +169,6 @@ void canLocateNodesGivenStartNodes() {
177
169
}
178
170
179
171
@ Test
180
- @ Disabled
181
172
void canLocateNodesInAGivenSandbox () {
182
173
String sandbox = "sandbox" ;
183
174
BrowsingContext browsingContext = new BrowsingContext (driver , driver .getWindowHandle ());
0 commit comments