geb.textmatching.CompositeTextMatcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geb-core Show documentation
Show all versions of geb-core Show documentation
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.
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