Skip to content

Commit ac2d953

Browse files
iampopovichdiemolDelta456
authored
[java] Fix Unicode value for OPTION key in Keys enum (#15966)
* Fix Unicode value for OPTION key in Keys enum * Update java/src/org/openqa/selenium/Keys.java Co-authored-by: Swastik Baranwal <swstkbaranwal@gmail.com> --------- Co-authored-by: Diego Molina <diemol@users.noreply.github.com> Co-authored-by: Swastik Baranwal <swstkbaranwal@gmail.com>
1 parent 8d333d4 commit ac2d953

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'),
123123
FN('\uE051'), // TODO: symbolic only; confirm or remove in future
124124

125125
ZENKAKU_HANKAKU('\uE040');

0 commit comments

Comments
 (0)