diff options
Diffstat (limited to 'components/script_traits')
-rw-r--r-- | components/script_traits/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script_traits/lib.rs b/components/script_traits/lib.rs index 00fb64b39e9..790c49eff94 100644 --- a/components/script_traits/lib.rs +++ b/components/script_traits/lib.rs @@ -798,6 +798,8 @@ pub enum WebDriverCommandMsg { SendKeys(BrowsingContextId, Vec<WebDriverInputEvent>), /// Act as if keys were pressed or release in the browsing context with the given ID. KeyboardAction(BrowsingContextId, KeyboardEvent), + /// Act as if the mouse was clicked in the browsing context with the given ID. + MouseButtonAction(MouseEventType, MouseButton, f32, f32), /// Set the window size. SetWindowSize( TopLevelBrowsingContextId, |