forked from enviPath/enviPy
31 lines
898 B
JavaScript
31 lines
898 B
JavaScript
/**
|
|
*
|
|
* Perform a swipe right on an element.
|
|
*
|
|
* @alias browser.swipeRight
|
|
* @param {String} selector element to swipe on
|
|
* @param {Number=} xoffset x offset of swipe gesture (in pixels or relative units)
|
|
* @param {Number} speed time (in seconds) to spend performing the swipe
|
|
* @uses mobile/swipe
|
|
* @type mobile
|
|
*
|
|
*/
|
|
|
|
let swipeRight = function (selector, xOffset, speed) {
|
|
/**
|
|
* we can't use default values for function parameter here because this would
|
|
* break the ability to chain the command with an element if reverse is used
|
|
*/
|
|
xOffset = typeof xOffset === 'number' ? xOffset : -100
|
|
speed = typeof speed === 'number' ? speed : 100
|
|
|
|
/**
|
|
* make sure xoffset is negative so we scroll left
|
|
*/
|
|
xOffset = xOffset < 0 ? xOffset * -1 : xOffset
|
|
|
|
return this.pause(100).swipe(selector, xOffset, 0, speed)
|
|
}
|
|
|
|
export default swipeRight
|