File tree 1 file changed +1
-2
lines changed
java/test/org/openqa/selenium
1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ public void testShouldGetClassPropertiesOfAnElement() {
91
91
WebElement heading = driver .findElement (By .cssSelector (".nameA" ));
92
92
assertThat (heading .getDomProperty ("class" )).isNull ();
93
93
assertThat (heading .getDomProperty ("className" )).isEqualTo ("nameA nameBnoise nameC" );
94
- assertThat (heading .getDomProperty ("classList" )).isEqualTo ("nameA nameBnoise nameC" );
94
+ assertThat (heading .getDomProperty ("classList" )).contains ("nameA nameBnoise nameC" );
95
95
}
96
96
97
97
@ Test
@@ -123,7 +123,6 @@ void testShouldGetNumericProperty() {
123
123
}
124
124
125
125
@ Test
126
- @ NotYetImplemented (FIREFOX )
127
126
public void testCanReturnATextApproximationOfTheStyleProperty () {
128
127
driver .get (pages .javascriptPage );
129
128
WebElement element = driver .findElement (By .id ("red-item" ));
You can’t perform that action at this time.
0 commit comments