Skip to content

Commit 2c04636

Browse files
authored
Update keys.py
Improve wording in docstring and comment in keys.py
1 parent f9883e3 commit 2c04636

File tree

1 file changed

+2
-2
lines changed
  • py/selenium/webdriver/common

1 file changed

+2
-2
lines changed

py/selenium/webdriver/common/keys.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919

2020
class Keys:
21-
"""Set of special keys codes."""
21+
"""Set of special key codes for keyboard actions."""
2222

2323
NULL = "\ue000"
2424
CANCEL = "\ue001" # ^break
@@ -58,7 +58,7 @@ class Keys:
5858
SEMICOLON = "\ue018"
5959
EQUALS = "\ue019"
6060

61-
NUMPAD0 = "\ue01a" # number pad keys
61+
NUMPAD0 = "\ue01a" # Keys representing number pad digits.
6262
NUMPAD1 = "\ue01b"
6363
NUMPAD2 = "\ue01c"
6464
NUMPAD3 = "\ue01d"

0 commit comments

Comments
 (0)