All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.applitools.eyes.selenium.StitchMode Maven / Gradle / Ivy

The newest version!
package com.applitools.eyes.selenium;

/**
 * Represents the types of available stitch modes.
 */
public enum StitchMode {
    /**
     * Standard JS scrolling.
     */
    SCROLL("Scroll"),

    /**
     * CSS translation based stitching.
     */
    CSS("CSS");

    private final String name;

    StitchMode(String name) {
        this.name = name;
    }

    public String getName() {
        return name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy