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 authored and aguspe committed Oct 22, 2023
1 parent 193a0cd commit e6beb33
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 e6beb33

Please sign in to comment.