UNPKG

@testim/testim-cli

Version:

Command line interface for running Testing on you CI

17 lines (15 loc) 443 B
/** * * Apply right 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 rightClick (cssSelector) { return handleMouseButtonCommand.call(this, cssSelector, 'right'); };