From b8324ad1d8256ac5b450852fc63924735d258ca4 Mon Sep 17 00:00:00 2001 From: Alex Popov Date: Thu, 26 Jun 2025 13:49:44 +0700 Subject: [PATCH] Fix Unicode value for OPTION key in Keys enum --- java/src/org/openqa/selenium/Keys.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/src/org/openqa/selenium/Keys.java b/java/src/org/openqa/selenium/Keys.java index 0b729541cb001..a230b0c82ec9f 100644 --- a/java/src/org/openqa/selenium/Keys.java +++ b/java/src/org/openqa/selenium/Keys.java @@ -119,7 +119,7 @@ public enum Keys implements CharSequence { RIGHT_COMMAND('\uE053'), // Symbolic macOS keys not yet standardized - OPTION('\uE050'), // TODO: verify Unicode value with WebDriver spec + OPTION('\uE052'), // TODO: verify Unicode value with WebDriver spec FN('\uE051'), // TODO: symbolic only; confirm or remove in future ZENKAKU_HANKAKU('\uE040');