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

geb.textmatching.CompositeTextMatcher Maven / Gradle / Ivy

Go to download

Geb (pronounced "jeb") is a browser automation solution. It brings together the power of WebDriver, the elegance of jQuery content selection, the robustness of Page Object modelling and the expressiveness of the Groovy language.

There is a newer version: 7.0
Show newest version
package geb.textmatching;

abstract class CompositeTextMatcher implements TextMatcher {

    protected final TextMatcher[] matchers;

    protected CompositeTextMatcher(TextMatcher[] matchers) {
        this.matchers = matchers;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy