Skip to content

Commit 4e7346f

Browse files
committed
[java] need to guard both keyboard actions tests for click bug on edge as well
1 parent 1b49a64 commit 4e7346f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

java/test/org/openqa/selenium/bidi/input/DefaultKeyboardTest.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
import static org.junit.jupiter.api.Assumptions.assumeFalse;
2222
import static org.openqa.selenium.testing.TestUtilities.getEffectivePlatform;
2323
import static org.openqa.selenium.testing.drivers.Browser.CHROME;
24+
import static org.openqa.selenium.testing.drivers.Browser.EDGE;
2425
import static org.openqa.selenium.testing.drivers.Browser.IE;
2526
import static org.openqa.selenium.testing.drivers.Browser.SAFARI;
2627

@@ -200,6 +201,9 @@ void canGenerateKeyboardShortcuts() {
200201
@NotYetImplemented(
201202
value = CHROME,
202203
reason = "https://github.com/GoogleChromeLabs/chromium-bidi/issues/2321")
204+
@NotYetImplemented(
205+
value = EDGE,
206+
reason = "https://github.com/GoogleChromeLabs/chromium-bidi/issues/2321")
203207
public void testSelectionSelectBySymbol() {
204208
driver.get(appServer.whereIs("single_text_input.html"));
205209

@@ -229,6 +233,9 @@ public void testSelectionSelectBySymbol() {
229233
@NotYetImplemented(
230234
value = CHROME,
231235
reason = "https://github.com/GoogleChromeLabs/chromium-bidi/issues/2321")
236+
@NotYetImplemented(
237+
value = EDGE,
238+
reason = "https://github.com/GoogleChromeLabs/chromium-bidi/issues/2321")
232239
public void testSelectionSelectByWord() {
233240
assumeFalse(getEffectivePlatform(driver).is(Platform.MAC), "MacOS has alternative keyboard");
234241

0 commit comments

Comments
 (0)