Skip to content

Commit b8324ad

Browse files
committed
Fix Unicode value for OPTION key in Keys enum
1 parent 8061b17 commit b8324ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/src/org/openqa/selenium/Keys.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public enum Keys implements CharSequence {
119119
RIGHT_COMMAND('\uE053'),
120120

121121
// Symbolic macOS keys not yet standardized
122-
OPTION('\uE050'), // TODO: verify Unicode value with WebDriver spec
122+
OPTION('\uE052'), // TODO: verify Unicode value with WebDriver spec
123123
FN('\uE051'), // TODO: symbolic only; confirm or remove in future
124124

125125
ZENKAKU_HANKAKU('\uE040');

0 commit comments

Comments
 (0)