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

info.novatec.testit.webtester.internal.implementation.pagefragments.StaticWebElementSupplier Maven / Gradle / Ivy

package info.novatec.testit.webtester.internal.implementation.pagefragments;

import java.util.function.Supplier;

import org.openqa.selenium.WebElement;

import lombok.EqualsAndHashCode;


@EqualsAndHashCode
public class StaticWebElementSupplier implements Supplier {

    private final WebElement webElement;

    public StaticWebElementSupplier(WebElement webElement) {
        this.webElement = webElement;
    }

    @Override
    public WebElement get() {
        return webElement;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy