class Selenium::DevTools::V102::Input

def synthesize_tap_gesture(x:, y:, duration: nil, tap_count: nil, gesture_source_type: nil)

def synthesize_tap_gesture(x:, y:, duration: nil, tap_count: nil, gesture_source_type: nil)
  @devtools.send_cmd('Input.synthesizeTapGesture',
                     x: x,
                     y: y,
                     duration: duration,
                     tapCount: tap_count,
                     gestureSourceType: gesture_source_type)
end