@applitools/eyes.selenium
Version:
Applitools Eyes SDK for Selenium WebDriver
23 lines (19 loc) • 318 B
JavaScript
;
/**
* Represents the types of available stitch modes.
*
* @readonly
* @enum {number}
*/
const StitchMode = {
/**
* Standard JS scrolling.
*/
SCROLL: 'Scroll',
/**
* CSS translation based stitching.
*/
CSS: 'CSS',
};
Object.freeze(StitchMode);
exports.StitchMode = StitchMode;