com.applitools.eyes.selenium.capture.WebDriverScreenshot Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-selenium-java3-jboss Show documentation
Show all versions of eyes-selenium-java3-jboss Show documentation
Applitools Eyes SDK for Selenium Java WebDriver
/*
* Applitools SDK for Selenium integration.
*/
package com.applitools.eyes.selenium.capture;
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)
public class WebDriverScreenshot {
private String value;
void setValue(String value) {
this.value = value;
}
String getValue() {
return value;
}
}