UNPKG

@testim/testim-cli

Version:

Command line interface for running Testing on you CI

16 lines (14 loc) 443 B
/** * * Apply middle click on an element. If selector is not provided, click on the last * moved-to location. * * @param {String} selector element to click on * @uses protocol/element, protocol/buttonPress * @type action * */ var handleMouseButtonCommand = require('../helpers/handleMouseButtonCommand'); module.exports = function middleClick (cssSelector) { return handleMouseButtonCommand.call(this, cssSelector, 'middle'); };