Skip to content

Commit

Permalink
[java] need to guard both keyboard actions tests for click bug on edg…
Browse files Browse the repository at this point in the history
…e as well
  • Loading branch information
titusfortner committed Jun 18, 2024
1 parent 1b49a64 commit 4e7346f
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import static org.junit.jupiter.api.Assumptions.assumeFalse;
import static org.openqa.selenium.testing.TestUtilities.getEffectivePlatform;
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.SAFARI;

Expand Down Expand Up @@ -200,6 +201,9 @@ void canGenerateKeyboardShortcuts() {
@NotYetImplemented(
value = CHROME,
reason = "https://github.com/GoogleChromeLabs/chromium-bidi/issues/2321")
@NotYetImplemented(
value = EDGE,
reason = "https://github.com/GoogleChromeLabs/chromium-bidi/issues/2321")
public void testSelectionSelectBySymbol() {
driver.get(appServer.whereIs("single_text_input.html"));

Expand Down Expand Up @@ -229,6 +233,9 @@ public void testSelectionSelectBySymbol() {
@NotYetImplemented(
value = CHROME,
reason = "https://github.com/GoogleChromeLabs/chromium-bidi/issues/2321")
@NotYetImplemented(
value = EDGE,
reason = "https://github.com/GoogleChromeLabs/chromium-bidi/issues/2321")
public void testSelectionSelectByWord() {
assumeFalse(getEffectivePlatform(driver).is(Platform.MAC), "MacOS has alternative keyboard");

Expand Down

0 comments on commit 4e7346f

Please sign in to comment.