Skip to content

Commit eb5696a

Browse files
committed
Support for ControlOrMeta KeyboardModifier
Fixes #3968
1 parent 5823d48 commit eb5696a

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Browser/utils/data_types.py

+1
Original file line numberDiff line numberDiff line change
@@ -833,6 +833,7 @@ class KeyboardModifier(Enum):
833833

834834
Alt = auto()
835835
Control = auto()
836+
ControlOrMeta = auto()
836837
Meta = auto()
837838
Shift = auto()
838839

atest/test/02_Content_Keywords/click_with_options.robot

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Click With All Modifier
1919
... left
2020
... Alt
2121
... Control
22+
... ControlOrMeta
2223
... Meta
2324
... Shift
2425
Get Text \#mouse_button == left

0 commit comments

Comments
 (0)