UNPKG

@testim/testim-cli

Version:

Command line interface for running Testing on you CI

18 lines (14 loc) 371 B
/** * * Double-clicks at the current mouse coordinates (set by moveto). * * @see https://code.google.com/p/selenium/wiki/JsonWireProtocol#/session/:sessionId/doubleclick * @type protocol * */ module.exports = function doDoubleClick () { return this.requestHandler.create({ path: '/session/:sessionId/doubleclick', method: 'POST' }); };