com.applitools.eyes.selenium.universal.dto.ScrollRootElementDto 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 com.applitools.eyes.universal.dto.SelectorRegionDto;
import com.fasterxml.jackson.annotation.JsonInclude;
/**
* scroll root element dto
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ScrollRootElementDto {
private SelectorRegionDto selector;
private ElementRegionDto element;
public SelectorRegionDto getSelector() {
return selector;
}
public void setSelector(SelectorRegionDto selector) {
this.selector = selector;
}
public ElementRegionDto getElement() {
return element;
}
public void setElement(ElementRegionDto element) {
this.element = element;
}
}