Skip to content

Commit

Permalink
[java] remove IE 9 check in test
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Oct 6, 2023
1 parent 5ce5acc commit 915b5b9
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions java/test/org/openqa/selenium/I18nTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
package org.openqa.selenium;

import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.jupiter.api.Assumptions.assumeFalse;
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;
Expand Down Expand Up @@ -77,9 +76,6 @@ void testEnteringHebrewTextFromRightToLeft() {
@Ignore(value = CHROME, reason = "ChromeDriver only supports characters in the BMP")
@Ignore(value = EDGE, reason = "EdgeDriver only supports characters in the BMP")
public void testEnteringSupplementaryCharacters() {
assumeFalse(
TestUtilities.isInternetExplorer(driver) && TestUtilities.getIEVersion(driver) < 10,
"IE: versions less thank 10 have issue 5069");
driver.get(pages.chinesePage);

String input = "";
Expand Down

0 comments on commit 915b5b9

Please sign in to comment.