We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3876882 commit f8c1d0fCopy full SHA for f8c1d0f
py/selenium/webdriver/common/keys.py
@@ -88,3 +88,13 @@ class Keys:
88
META = "\ue03d"
89
COMMAND = "\ue03d"
90
ZENKAKU_HANKAKU = "\ue040"
91
+
92
+ # Extended macOS/ChromeDriver keys (based on observed Chrome usage)
93
+ RIGHT_SHIFT = "\ue050"
94
+ RIGHT_CONTROL = "\ue051"
95
+ RIGHT_ALT = "\ue052"
96
+ RIGHT_COMMAND = "\ue053"
97
98
+ # Symbolic macOS keys not yet standardized
99
+ OPTIONS = "\uE050" # TODO: verify Unicode value with WebDriver spec
100
+ FUNCTION = "\uE051" # TODO: symbolic only; confirm or remove in future
0 commit comments