@christian-bromann/webdriverio
Version:
A nodejs bindings implementation for selenium 2.0/webdriver
25 lines (21 loc) • 754 B
JavaScript
/**
*
* Releases the mouse button previously held (where the mouse is currently at). Must
* be called once for every buttondown command issued. See the note in click and
* buttondown about implications of out-of-order commands.
*
* @param {Number} button Which button, enum: *{LEFT = 0, MIDDLE = 1 , RIGHT = 2}*. Defaults to the left mouse button if not specified.
*
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#sessionsessionidbuttonup
* @type protocol
*
*/
import handleMouseButtonProtocol from '../helpers/handleMouseButtonProtocol'
let buttonUp = function (button) {
return handleMouseButtonProtocol.call(
this,
'/session/:sessionId/buttonup',
button
)
}
export default buttonUp