class Selenium::DevTools::V102::Input

def emulate_touch_from_mouse_event(type:, x:, y:, button:, timestamp: nil, delta_x: nil, delta_y: nil, modifiers: nil, click_count: nil)

def emulate_touch_from_mouse_event(type:, x:, y:, button:, timestamp: nil, delta_x: nil, delta_y: nil, modifiers: nil, click_count: nil)
  @devtools.send_cmd('Input.emulateTouchFromMouseEvent',
                     type: type,
                     x: x,
                     y: y,
                     button: button,
                     timestamp: timestamp,
                     deltaX: delta_x,
                     deltaY: delta_y,
                     modifiers: modifiers,
                     clickCount: click_count)
end