com.applitools.eyes.selenium.universal.dto.DriverDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-selenium-java5 Show documentation
Show all versions of eyes-selenium-java5 Show documentation
Applitools Eyes SDK for Selenium Java WebDriver
package com.applitools.eyes.selenium.universal.dto;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonInclude;
/**
* custom driver
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public class DriverDto {
private String sessionId;
private String serverUrl;
private Map capabilities;
private String proxyUrl;
public String getSessionId() {
return sessionId;
}
public void setSessionId(String sessionId) {
this.sessionId = sessionId;
}
public String getServerUrl() {
return serverUrl;
}
public void setServerUrl(String serverUrl) {
this.serverUrl = serverUrl;
}
public Map getCapabilities() {
return capabilities;
}
public void setCapabilities(Map capabilities) {
this.capabilities = capabilities;
}
public String getProxyUrl() {
return proxyUrl;
}
public void setProxyUrl(String proxyUrl) {
this.proxyUrl = proxyUrl;
}
}