com.applitools.eyes.selenium.fluent.DynamicRegionBySelector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-selenium-common-java5 Show documentation
Show all versions of eyes-selenium-common-java5 Show documentation
Applitools Eyes SDK base for Java
package com.applitools.eyes.selenium.fluent;
import com.applitools.eyes.DynamicTextType;
import com.applitools.eyes.GetDynamicTextType;
import com.applitools.eyes.serializers.BySerializer;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import org.openqa.selenium.By;
public class DynamicRegionBySelector extends GetDynamicTextType {
@JsonSerialize(using = BySerializer.class)
private final By selector;
public DynamicRegionBySelector(By selector, DynamicTextType ... textTypes) {
super(textTypes);
this.selector = selector;
}
public By getSelector() {
return selector;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy