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

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

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

import java.util.function.Supplier;

import org.openqa.selenium.By;
import org.openqa.selenium.SearchContext;
import org.openqa.selenium.WebElement;


public class DynamicWebElementSupplier implements Supplier {

    private final Supplier searchContextSupplier;
    private final By by;

    public DynamicWebElementSupplier(Supplier searchContextSupplier, By by) {
        this.searchContextSupplier = searchContextSupplier;
        this.by = by;
    }

    @Override
    public WebElement get() {
        return searchContextSupplier.get().findElement(by);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy