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

com.applitools.eyes.locators.OcrRegion Maven / Gradle / Ivy

There is a newer version: 5.63.43
Show newest version
package com.applitools.eyes.locators;

import com.applitools.eyes.Region;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;

public class OcrRegion extends BaseOcrRegion {
    @JsonIgnore
    private WebElement element;
    @JsonIgnore
    private By selector;
    @JsonIgnore
    private Region region;

    public OcrRegion(WebElement element) {
        this.element = element;
    }

    public OcrRegion(By selector) {
        this.selector = selector;
    }

    public OcrRegion(Region region) {
        this.region = region;
    }

    public WebElement getElement() {
        return element;
    }

    public By getSelector() {
        return selector;
    }

    public Region getRegion() {
        return region;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy