All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.applitools.eyes.selenium.fluent.DynamicRegionBySelector Maven / Gradle / Ivy

There is a newer version: 5.68.0
Show newest version
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