Skip to content

Commit 4514948

Browse files
committed
Ignoring failed tests
1 parent dcaa717 commit 4514948

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/client/test/org/openqa/selenium/ElementFindingTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,14 +300,14 @@ public void testFindingMultipleElementsByEmptyClassNameShouldThrow() {
300300
driver.findElements(By.className(""));
301301
}
302302

303-
@Ignore(value = {CHROME}, reason = "Throws WebDriverException")
303+
@Ignore(value = {CHROME, OPERA, OPERA_MOBILE}, reason = "Throws WebDriverException")
304304
@Test(expected = NoSuchElementException.class)
305305
public void testFindingASingleElementByCompoundClassNameShouldThrow() {
306306
driver.get(pages.xhtmlTestPage);
307307
driver.findElement(By.className("a b"));
308308
}
309309

310-
@Ignore(value = {CHROME}, reason = "Throws WebDriverException")
310+
@Ignore(value = {CHROME, OPERA, OPERA_MOBILE}, reason = "Throws WebDriverException")
311311
@Test(expected = NoSuchElementException.class)
312312
public void testFindingMultipleElementsByCompoundClassNameShouldThrow() {
313313
driver.get(pages.xhtmlTestPage);

0 commit comments

Comments
 (0)