com.applitools.eyes.playwright.universal.dto.AccessibilityRegionByElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-playwright-java5 Show documentation
Show all versions of eyes-playwright-java5 Show documentation
Applitools Eyes SDK for Playwright Java
package com.applitools.eyes.playwright.universal.dto;
import com.applitools.eyes.fluent.GetRegion;
import com.applitools.eyes.universal.dto.TAccessibilityRegion;
import com.fasterxml.jackson.annotation.JsonInclude;
@JsonInclude(JsonInclude.Include.NON_NULL)
public class AccessibilityRegionByElement extends TAccessibilityRegion implements GetRegion {
private Element region;
public Element getRegion() {
return region;
}
public void setRegion(Element region) {
this.region = region;
}
}