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

com.applitools.eyes.WebDriverScreenshot Maven / Gradle / Ivy

There is a newer version: 2.57
Show newest version
/*
 * Applitools SDK for Selenium integration.
 */
package com.applitools.eyes;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

/**
 * Encapsulation for the WebDriver wire protocol "screenshot" command response.
 */

// Different browsers return different parameters in addition to "value".
@JsonIgnoreProperties(ignoreUnknown = true)
class WebDriverScreenshot {
    private String value;

    void setValue(String value) {
        this.value = value;
    }

    String getValue() {
        return value;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy