File tree Expand file tree Collapse file tree 2 files changed +2
-11
lines changed
java/test/org/openqa/selenium Expand file tree Collapse file tree 2 files changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -135,16 +135,6 @@ public void shouldBeAbleToClearRangeInput() {
135
135
shouldBeAbleToClearInput (By .name ("range_input" ), "42" , "50" );
136
136
}
137
137
138
- @ Test
139
- @ NotYetImplemented (CHROME )
140
- @ NotYetImplemented (EDGE )
141
- @ NotYetImplemented (FIREFOX )
142
- @ NotYetImplemented (IE )
143
- @ NotYetImplemented (SAFARI )
144
- public void shouldBeAbleToClearCheckboxInput () {
145
- shouldBeAbleToClearInput (By .name ("checkbox_input" ), "Checkbox" );
146
- }
147
-
148
138
@ Test
149
139
@ NotYetImplemented (HTMLUNIT )
150
140
@ NotYetImplemented (IE )
Original file line number Diff line number Diff line change @@ -167,7 +167,8 @@ public void canMinimizeTheWindow() {
167
167
168
168
changeSizeTo (new Dimension (640 , 400 ));
169
169
driver .manage ().window ().minimize ();
170
- // TODO: how to verify the result of this operation?
170
+
171
+ assertThat (((JavascriptExecutor ) driver ).executeScript ("return document.hidden;" )).isEqualTo (true );
171
172
}
172
173
173
174
@ Test
You can’t perform that action at this time.
0 commit comments