Skip to content

Commit

Permalink
[java] ignore test that breaks in 119
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Oct 9, 2023
1 parent 8401a7e commit 2a54d3c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions java/test/org/openqa/selenium/I18nTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@

import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.jupiter.api.Assumptions.assumeTrue;
import static org.openqa.selenium.testing.drivers.Browser.CHROME;
import static org.openqa.selenium.testing.drivers.Browser.EDGE;
import static org.openqa.selenium.testing.drivers.Browser.IE;
import static org.openqa.selenium.testing.drivers.Browser.*;

import org.junit.jupiter.api.Test;
import org.openqa.selenium.environment.GlobalTestEnvironment;
Expand Down Expand Up @@ -75,6 +73,7 @@ void testEnteringHebrewTextFromRightToLeft() {
@Test
@Ignore(value = CHROME, reason = "ChromeDriver only supports characters in the BMP")
@Ignore(value = EDGE, reason = "EdgeDriver only supports characters in the BMP")
@Ignore(value = FIREFOX, reason = "https://github.com/mozilla/geckodriver/issues/2139")
public void testEnteringSupplementaryCharacters() {
driver.get(pages.chinesePage);

Expand Down

0 comments on commit 2a54d3c

Please sign in to comment.